import { default as React } from 'react'; type TreeViewElement = { id: string; name: string; isSelectable?: boolean; children?: TreeViewElement[]; }; interface TreeViewComponentProps extends React.HTMLAttributes { } declare const Tree: React.ForwardRefExoticComponent<{ initialSelectedId?: string | undefined; indicator?: boolean | undefined; elements?: TreeViewElement[] | undefined; initialExpandedItems?: string[] | undefined; openIcon?: React.ReactNode; closeIcon?: React.ReactNode; } & TreeViewComponentProps & React.RefAttributes>; export { Tree, type TreeViewElement }; //# sourceMappingURL=FileTree.d.ts.map