import * as React from 'react'; /** Props接口 */ interface IProps { onSuccess?: () => void; taskUuid?: string; value?: string; } export default class UIComponents extends React.Component { constructor(props: any); componentDidMount(): void; handleMenuClick: (e: any) => void; render(): JSX.Element; onClose: () => void; onSuccess: (list: any[]) => void; onRefresh: () => void; uploadInvoice: (values: any) => Promise; uploadInvoiceByExcel: (values: any) => Promise; uploadInvoiceByScan: (values: any) => Promise; private renderCollect; } export {};