import React from 'react'; import { IUploadAttachment, IUploadEvents } from '../../types/file'; export interface IUploadDisplayProps { className?: string; attachments: IUploadAttachment[]; suppressScroll?: boolean; supportDownload?: boolean; supportRemove?: boolean; supportPreview?: boolean; zipFileName?: string; onDone?: IUploadEvents['onDone']; onRemove?: IUploadEvents['onRemove']; onAbort?: IUploadEvents['onAbort']; onPreview?: (index: number) => void; hideDownloadAll?: boolean; } export declare const UploadDisplay: React.FC;