import jwt from "jsonwebtoken"; export interface Jwk { kid: string; [key: string]: string; } export type Jwt = string; export declare const verifyJwtUsingJwk: (token: Jwt, jwk: Jwk) => Promise;