/// import React from 'react'; import { UploadListProps } from './interface'; export default class UploadList extends React.Component { static defaultProps: { listType: string; progressAttr: { strokeWidth: number; showInfo: boolean; }; prefixCls: string; showRemoveIcon: boolean; showPreviewIcon: boolean; }; handleClose: (file: any) => void; handlePreview: (file: any, e: any) => void; componentDidUpdate(): void; render(): JSX.Element; }