export interface FileRowData { id: string; name: string; size?: string; type?: string; progress?: number; status?: 'ready' | 'uploading' | 'error'; } interface FileRowProps { file: FileRowData; class?: string; ondownload?: (file: FileRowData) => void; onremove?: (file: FileRowData) => void; } declare const FileRow: import("svelte").Component; type FileRow = ReturnType; export default FileRow;