import { OrPromise } from './utils'; export type VerifyOptions
> = { message: string; signature: Uint8Array; header: Header; /** * The public key jwk is included when the `sd-jwt` has the following properties: * * - A `cnf` claim inside the cleartext payload * - A Keybinding at the end */ publicKeyJwk?: Record; }; export type Verifier
= Record, options extends Record = VerifyOptions
> = (options: options) => OrPromise;