import type { WriteRequestResultTxnBase, WriteRequestResponse } from '../types'; import { IndyVdrRequest } from '../indyVdr'; export declare type RevocationRegistryEntryRequestOptions = { submitterDid: string; revocationRegistryDefinitionId: string; revocationRegistryDefinitionType: string; revocationRegistryEntry: { ver: '1.0'; value: { accum: string; }; }; }; interface RevocationRegistryEntryResultTxn extends WriteRequestResultTxnBase { type: '114'; data: { value: { accum: string; }; revocRegDefId: string; revocDefType: 'CL_ACCUM'; }; } export declare type RevocationRegistryEntryResponse = WriteRequestResponse; export declare class RevocationRegistryEntryRequest extends IndyVdrRequest { constructor(options: RevocationRegistryEntryRequestOptions); } export {};