import * as React from 'react'; /** Props接口 */ interface IProps { onClose: () => void; onSuccess: (value: any) => void; } export default class UIComponents extends React.Component { columns: ({ title: string; dataIndex: string; width: number; ellipsis: boolean; } | { title: string; dataIndex: string; width?: undefined; ellipsis?: undefined; })[]; constructor(props: any); componentDidMount(): void; getDidlist: (params: any) => Promise; onClose: () => void; onChange: (pagination: any) => void; onRefresh: () => void; onSearch: (data?: {}) => void; onSubmit: () => void; topExpand: () => JSX.Element; render(): JSX.Element; } export {};