import React from 'react'; import { AttachmentFile } from '../types'; interface FileListItemProps { file: AttachmentFile; onDelete: () => void; onPreview: () => void; onDownload: () => void; onRetry?: () => void; className?: string; prefixCls?: string; hashId?: string; } export declare const AttachmentFileListItem: React.FC; export {};