import * as React from 'react'; /** Props接口 */ interface IProps { onClose: () => void; value: string | number[]; list?: string[]; onSave: (values: any) => void; type?: boolean; threeInone?: any; } export default class UIComponents extends React.Component { formRef: any; columns: { title: string; dataIndex: string; width: number; }[]; constructor(props: any); componentDidMount(): void; getData: () => Promise; onFinish: (values: any) => void; onRefresh: () => void; onSave: () => void; render(): JSX.Element; } export {};