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