import React from 'react'; interface Props { name: string; extra?: string; parentPath?: string; level?: number; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type TreeFolderProps = Props & NativeAttrs; declare const TreeFolder: React.FC>; export default TreeFolder;