import * as React from 'react'; import './index.less'; /** Props接口 */ interface IProps { onSuccess: () => void; } export default class UIComponents extends React.Component { constructor(props: IProps); componentDidMount(): void; onDelete: (keys: string[]) => void; getData: () => Promise; send: () => void; onSuccess: (list: any[]) => void; refreshInvoice: () => void; deleteTask: () => Promise; titleDom: () => JSX.Element; render(): JSX.Element; } export {};