import React from 'react'; import '../index.less'; interface IProps { fnForceUpdate: () => void; data: IData; } interface IData { /** * 上传地址 */ url: string | ((data: any) => Promise); templateUuid?: string; } declare class Component extends React.Component { private list; constructor(props: any); handleCancel: () => void; handleOk: () => Promise; onAddGroup: () => void; fetchGroup: (rule: any, value: any, callback: any) => void; downloadfile: () => Promise; onChange: (info: any) => void; handleResponse: (res: any) => void; onDownload: () => Promise; tipModal: () => JSX.Element; render(): JSX.Element; } export default Component;