export declare enum FileStatus { DONE = "done", ERROR = "error", SUCCESS = "success", UPLOADING = "uploading", EXISTING = "existing" } export declare type FileProp = { name: string; uid: string; status: FileStatus; size: number; percent?: number; statusCustomMessage?: string; }; export declare type FileCardProps = { file: FileProp; onRemove: (file: FileProp) => void; onRetry?: () => void; onPreview?: () => void; onDownload?: () => void; withButtons?: boolean; withRetry?: boolean; withPreview?: boolean; withWhiteBg?: boolean; }; declare const FileCard: ({ onRemove, onRetry, onPreview, onDownload, file, withButtons, withRetry, withPreview, withWhiteBg, }: FileCardProps) => JSX.Element; export default FileCard;