import React from "react"; import "./index.less"; import "rc-dropdown/assets/index.css"; export interface FileTreeIProps { defaultFiles: any; openedFiles: any; getAllFiles: () => any; onPathChange: (key: string) => void; title?: string; currentPath?: string; style?: any; onAddFile: (...args: any) => void; onDeleteFile: (...args: any) => void; onEditFileName: (...args: any) => void; onAddFolder: (...args: any) => void; onDeleteFolder: (path: string) => void; onEditFolderName: (path: string, name: string) => void; onCloseFile: (path: string) => void; rootEl: React.MutableRefObject; setSearchTextVisible: (visible: boolean) => void; disableFileOps?: { add?: boolean; delete?: boolean; rename?: boolean; }; disableFolderOps?: { add?: boolean; delete?: boolean; rename?: boolean; }; useFileMenu: boolean; } export interface FileTreeRefType { refresh: (defaultFiles: any) => void; } declare const _default: React.MemoExoticComponent>>; export default _default;