/// import { TreeNode } from "./type"; interface FileItemWithFileIconProps { treeNode: TreeNode; } export declare function getFileIconClass(fileName: string, isDirectory: boolean, expanded?: boolean): string; declare function FileItemWithFileIcon({ treeNode }: FileItemWithFileIconProps): JSX.Element; export default FileItemWithFileIcon;