import * as React from 'react'; /** Props接口 */ interface IProps { onSuccess: () => void; onClose: () => void; /** * 下拉选择列表 */ data: any[]; /** * 勾选列表 */ list: any[]; } export default class UIComponents extends React.Component { formRef: any; constructor(props: IProps); componentDidMount(): void; getlist: () => Promise; onClose: () => void; onSuccess: () => void; onSubmit: () => void; submitOne: (values: any) => Promise; submitBatch: (values: any) => Promise; onFinish: (values: any) => Promise; onFinalSubmit: (data: any) => Promise; onDidChange: (value: any) => void; render(): JSX.Element; } export {};