import * as React from 'react'; /** Props接口 */ interface IProps { onClose?: () => void; taskUuid: string; recordUuid: number; data: any; } export default class UIComponents extends React.Component { columns: ({ title: string; dataIndex: string; width: number; render: (text: any, record: any, index: any) => any; ellipsis?: undefined; } | { title: string; dataIndex: string; ellipsis: boolean; width?: undefined; render?: undefined; } | { title: string; dataIndex: string; width: number; ellipsis: boolean; render: (text: any) => JSX.Element; } | { title: string; dataIndex: string; width: number; render?: undefined; ellipsis?: undefined; })[]; constructor(props: any); componentDidMount(): void; getData: (params: any) => Promise; onPageChange: (pageNum: any, pageSize: any) => void; onRefresh: () => void; render(): JSX.Element; } export {};