import * as React from 'react'; /** Props接口 */ interface IProps { onClose: () => void; onSuccess: (values: any) => void; list: string[]; } export default class UIComponents extends React.Component { formRef: any; constructor(props: any); onClose: () => void; onSubmit: () => void; onFinish: (values: any) => void; render(): JSX.Element; } export {};