import React from 'react'; interface IProps { onClose: () => void; onSuccess?: () => void; data: { url: string; downloadurl: string; }; type: number; } export default class Component extends React.Component { private list; constructor(props: any); handleCancel: () => void; handleOk: () => void; onChange: (info: any) => void; render(): JSX.Element; } export {};