import type { AnonCredsVerifierService, VerifyProofOptions } from '@aries-framework/anoncreds'; import type { AgentContext } from '@aries-framework/core'; import { IndySdk } from '../../types'; export declare class IndySdkVerifierService implements AnonCredsVerifierService { private indySdk; constructor(indySdk: IndySdk); verifyProof(agentContext: AgentContext, options: VerifyProofOptions): Promise; }