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; changeView: (radio: string) => void; deleteTask: () => Promise; onViewAll: () => void; closeOriginal: () => void; showoriginalDocList: () => JSX.Element; toRisk: () => void; render(): JSX.Element; } export {};