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