import { type JwtVerifier, type JwtVerifyOptions } from "./jwt_verifier.js"; import type { OidcIdTokenClaims } from "./oidc.js"; /** @internal */ export interface Jwks { keys: (JsonWebKey & { kid: string; })[]; } export declare class WebCryptoJwtVerifier implements JwtVerifier { #private; verify(token: string, options?: JwtVerifyOptions): Promise; } //# sourceMappingURL=web_crypto_jwt_verifier.d.ts.map