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