export interface Jwk { kty: string; crv?: string; x?: string; kid?: string; alg?: string; use?: string; } export interface JwkSet { keys: Jwk[]; } export declare function findJwkByKid(set: JwkSet | null | undefined, kid: string): Jwk | null; export declare function jwkThumbprint(jwk: Jwk): string; export declare function loadJwkSet(json: string): JwkSet; export declare function verifyJwsCompact(jws: string, expectedPayload: Uint8Array | null, jwk: Jwk): void; export declare function verifyAgentCardSignature(cardJson: string | Uint8Array, jwks: JwkSet): void; //# sourceMappingURL=jws.d.ts.map