import type { GetRequestResponse, GetRequestResultFoundBase, GetRequestResultNotFoundBase } from '../types'; import { IndyVdrRequest } from '../indyVdr'; export declare type GetNymRequestOptions = { submitterDid?: string; dest: string; }; interface GetNymFoundResult extends GetRequestResultFoundBase { type: '105'; data: string; dest: string; } interface GetNymNotFoundResult extends GetRequestResultNotFoundBase { type: '105'; data: null; dest: string; } export declare type GetNymResponse = GetRequestResponse; export declare class GetNymRequest extends IndyVdrRequest { constructor(options: GetNymRequestOptions); } export {};