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