///
import { OnSelectCallback, SelectMode } from '../../files/FileListing/FileListing';
import { Files } from '@tapis/tapis-typescript';
type FileExplorerProps = {
systemId?: string;
path?: string;
className?: string;
allowSystemChange?: boolean;
onNavigate?: (systemId: string | null, path: string | null) => void;
onSelect?: OnSelectCallback;
onUnselect?: OnSelectCallback;
fields?: Array<'size' | 'lastModified'>;
selectedFiles?: Array;
selectMode?: SelectMode;
};
declare const FileExplorer: React.FC;
export default FileExplorer;