UNPKG

@mui/internal-docs-infra

Version:

MUI Infra - internal documentation creation tools.

11 lines 418 B
import * as React from 'react'; /** * Provider that collects type data from all `useTypes()` calls within its subtree. * This enables `useType(name)` to look up individual type data anywhere in the tree, * and `useTypeProp(typeName, propName)` to look up individual properties. */ export declare function TypesDataProvider({ children }: { children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;