import React from 'react'; import { IFile } from './types/file'; export interface FileExplorerModalProps { open: boolean; onClose?: () => void; files?: IFile[]; onSubmit?: (path: string) => Promise; title?: string; path?: string; onPathChange?: (path: string) => void; selected?: string[]; onClick?: (file: IFile) => void; onSelect?: (selected: string[]) => void; onBack?: () => void; } export declare const FileExplorerModal: React.FC;