import React from 'react'; import { FileViewerFile } from '../../components'; export interface FileDialogFile extends FileViewerFile { name?: string; timestamp?: Date; owner?: { name?: string; }; } export interface FileDialogProps { open: boolean; onClose?: any; onSubmit?: (files: any[]) => void; onDownload?: () => void; job?: any; files?: FileDialogFile[]; token?: string; } export declare const FileDialog: React.FC;