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