import type { FileUpload } from '../types'; import { FileIconProps } from './FileIcon/FileIcon'; export declare type FilePreviewerProps = { fileIconProps?: FileIconProps; uploads?: FileUpload[]; handleRemove?: (id: string) => void; handleRetry?: (id: string) => void; handleFiles?: (files: FileList) => void; }; /** * Component that displays files which are being uploaded */ export declare const FilePreviewer: ({ fileIconProps, uploads, handleRemove, handleRetry, }: FilePreviewerProps) => JSX.Element; //# sourceMappingURL=FilePreviewer.d.ts.map