import * as React from 'react'; import { SimpleTreeViewProps } from "./SimpleTreeView.types.js"; export declare const SimpleTreeViewRoot: import("@emotion/styled").StyledComponent & { ownerState: SimpleTreeViewProps; }, Pick, HTMLUListElement>, keyof React.ClassAttributes | keyof React.HTMLAttributes>, {}>; type SimpleTreeViewComponent = ((props: SimpleTreeViewProps & React.RefAttributes) => React.JSX.Element) & { propTypes?: any; }; /** * * Demos: * * - [Tree View](https://mui.com/x/react-tree-view/) * * API: * * - [SimpleTreeView API](https://mui.com/x/api/tree-view/simple-tree-view/) */ declare const SimpleTreeView: SimpleTreeViewComponent; export { SimpleTreeView };