///
import { AttachmentType, UploadFile } from '../types';
interface UploadListCardItemProps {
/** 预览的附件类型 */
previewFileType: string[];
file: UploadFile;
type: AttachmentType;
}
declare const UploadListCardItem: React.FC;
export default UploadListCardItem;