import type { GetRequestResultFoundBase, GetRequestResultNotFoundBase, GetRequestResponse } from '../types'; import { IndyVdrRequest } from '../indyVdr'; export declare type GetRevocationRegistryRequestOptions = { submitterDid?: string; revocationRegistryId: string; timestamp: Date; }; interface GetRevocationRegistryFoundResult extends GetRequestResultFoundBase { type: '116'; data: { seqNo: number; value: { accum: string; }; revocRegDefId: string; txnTime: number; revocDefType: 'CL_ACCUM'; }; revocRegDefId: string; } interface GetRevocationRegistryNotFoundResult extends GetRequestResultNotFoundBase { type: '116'; data: null; revocRegDefId: string; } export declare type GetRevocationRegistryResponse = GetRequestResponse; export declare class GetRevocationRegistryRequest extends IndyVdrRequest { constructor(options: GetRevocationRegistryRequestOptions); } export {};