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