import { type Presentation, type Proof } from '@dxos/protocols/proto/dxos/halo/credentials'; import { type VerificationResult } from '../credentials'; export declare const verifyPresentation: (presentation: Presentation) => Promise; export declare const verifyPresentationChain: (presentation: Presentation, proof: Proof) => Promise; /** * Verifies that the signature is valid and was made by the signer. * Does not validate other semantics (e.g. chains). */ export declare const verifyPresentationSignature: (presentation: Presentation, proof: Proof) => Promise; //# sourceMappingURL=verifier.d.ts.map