import React from 'react'; import { AttachmentFile } from '../types'; export type AttachmentFileListProps = { fileMap?: Map; onDelete: (file: AttachmentFile) => void; onPreview?: (file: AttachmentFile) => void; onDownload?: (file: AttachmentFile) => void; onRetry?: (file: AttachmentFile) => void; onClearFileMap?: () => void; }; export declare const AttachmentFileList: React.FC;