import React from 'react'; import type { UploadedFile } from './FileUploader.types'; interface FilePreviewProps { file: UploadedFile; onRemove: (id: string) => void; disabled?: boolean; dictionary?: { errorUploading?: string; retryTooltip?: string; uploadingCancel?: string; remove?: string; }; } export declare const FilePreview: React.FC; export {}; //# sourceMappingURL=FilePreview.d.ts.map