UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

18 lines 905 B
import * as React from 'react'; import { RichTreeViewProps } from "./RichTreeView.types.js"; export declare const RichTreeViewRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, keyof React.HTMLAttributes<HTMLUListElement> | keyof React.ClassAttributes<HTMLUListElement>>, {}>; type RichTreeViewComponent = (<R extends {}, Multiple extends boolean | undefined = undefined>(props: RichTreeViewProps<R, Multiple> & React.RefAttributes<HTMLUListElement>) => React.JSX.Element) & { propTypes?: any; }; /** * * Demos: * * - [Tree View](https://mui.com/x/react-tree-view/) * * API: * * - [RichTreeView API](https://mui.com/x/api/tree-view/rich-tree-view/) */ declare const RichTreeView: RichTreeViewComponent; export { RichTreeView };