import * as React from 'react'; import type { UploadFile, UploadListProps } from '../interface'; interface UploadListRef { handlePreview: (file: UploadFile, e?: React.SyntheticEvent) => void; handleDownload: (file: UploadFile) => void; } declare const UploadList: React.ForwardRefExoticComponent & React.RefAttributes>; export default UploadList;