import * as React from 'react'; import { RichTreeViewProps } from "./RichTreeView.types.js"; export declare const RichTreeViewRoot: import("@emotion/styled").StyledComponent, Pick, HTMLUListElement>, keyof React.ClassAttributes | keyof React.HTMLAttributes>, {}>; type RichTreeViewComponent = ((props: RichTreeViewProps & React.RefAttributes) => 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 };