///
import { Files } from '@tapis/tapis-typescript';
import { SelectMode } from '../../../components/files/FileListing/FileListing';
type FileSelectModalProps = {
systemId?: string;
path?: string;
allowSystemChange?: boolean;
onSelect?: (systemId: string | null, files: Array) => void;
selectMode?: SelectMode;
toggle: () => void;
initialSelection?: Array;
};
declare const FileSelectModal: React.FC;
export default FileSelectModal;