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