import React from 'react'; import { ServiceAgent } from 'grey-service-agent'; declare const RollType: ["master", "slave", "master_config", "slave_config"]; export declare type RollType = typeof RollType[number]; export interface DigitalAssetVerificationProps { /** 通信模块 */ server: ServiceAgent; prefix: string; serviceTools: any; /** * master代表审核方;slave代表被审核方 */ role?: RollType; remoteConfig?: { domain: string; token: string; }; didPath?: string; pathname?: string; user?: { userInfo: { nickName: string; }; }; } declare class DigitalAssetVerification extends React.Component { static server: ServiceAgent; static prefix_path: string; static rootPath: string; static remoteConfig: { domain: string; token: string; }; static serviceTools: any; /** * 跳转的did应用地址 */ static didPath: string; /** * master代表审核方;slave代表被审核方 */ static role: string; static pathname: string; static user: any; constructor(props: DigitalAssetVerificationProps); render(): JSX.Element; } export default DigitalAssetVerification;