import React from 'react'; import OcTree, { TreeNode } from './Internal'; import { TreeProps } from './Tree.types'; import type { BasicDataNode, DataNode } from './Internal/OcTree.types'; import DirectoryTree from './DirectoryTree'; declare type CompoundedComponent = ((props: React.PropsWithChildren> & { ref?: React.Ref; }) => React.ReactElement) & { defaultProps: Partial>>; TreeNode: typeof TreeNode; DirectoryTree: typeof DirectoryTree; }; declare const Tree: CompoundedComponent; export default Tree;