import { ContextService } from "./ContextService.mjs"; import { ProofService } from "./ProofService.mjs"; import { RevocationService } from "./RevocationService.mjs"; import { ValidationIssue } from "../utils/validate.mjs"; import "../index.mjs"; import { AgentContext } from "@credo-ts/core"; //#region src/services/VerifyService.d.ts declare class VerifyService { private readonly contextService; private readonly revocations; private readonly proofs; constructor(contextService: ContextService, revocations: RevocationService, proofs: ProofService); verify(agentContext: AgentContext, credentialOrJwt: any): Promise<{ isValidStructure: boolean; issues: ValidationIssue[]; status: string; proofVerified: boolean; }>; private evaluateStatus; } //#endregion export { VerifyService }; //# sourceMappingURL=VerifyService.d.mts.map