import { type IJsonLdNodeObject } from "@twin.org/data-json-ld"; import type { IJwk } from "@twin.org/web"; import type { IJsonWebSignature2020Proof } from "../models/IJsonWebSignature2020Proof.js"; import type { IProofSignerVerifierAsync } from "../models/IProofSignerVerifierAsync.js"; /** * Helper methods for creating and verifying JsonWebSignature2020 proofs with async signing callbacks. * This implementation creates JWS signatures manually per RFC 7515 to support async signing callbacks. */ export declare class JsonWebSignature2020AsyncSignerVerifier implements IProofSignerVerifierAsync { /** * Runtime name for the class. */ static readonly CLASS_NAME: string; /** * Create a new instance of JsonWebSignature2020AsyncSignerVerifier. */ constructor(); /** * Create a proof with an async signing callback. * @param unsecuredDocument The data to create the proof for. * @param unsignedProof The proof options. * @param signCallback Async callback that signs data with a private key from secure storage. * @returns The created proof. */ createProofWithSigner(unsecuredDocument: IJsonLdNodeObject, unsignedProof: IJsonWebSignature2020Proof, signCallback: (data: Uint8Array, algorithm: string) => Promise): Promise; /** * Verify a proof for the given data. * @param securedDocument The credential to verify. * @param signedProof The proof to verify. * @param verifyKey The public key to verify the proof with. * @returns True if the credential was verified. */ verifyProof(securedDocument: IJsonLdNodeObject, signedProof: IJsonWebSignature2020Proof, verifyKey: IJwk): Promise; /** * Create a hash for the given data. * @param unsecuredDocument The data to create the proof for. * @param unsignedProof The unsigned proof. * @returns The created hash. */ createHash(unsecuredDocument: IJsonLdNodeObject, unsignedProof: IJsonWebSignature2020Proof): Promise; }