import type { Jwk } from "../features/security/utils/verifyJwtUsingJwk.js"; import { JwkCache } from "./abstractions.js"; export declare class JwksCache implements JwkCache.Interface { private cache; getKeys(issuer: string): Promise; clearCache(): void; }