/// import { JsonWebKey } from 'crypto'; import { ExportJWK } from '../utils'; export interface JWKSResponse { keys: JsonWebKey[]; } export declare type HandleJWKSRequest = () => JWKSResponse; export declare const makeHandleJWKSRequest: ({ jwk, exportJWK }: { jwk: JsonWebKey; exportJWK: ExportJWK; }) => { handleJWKSRequest: HandleJWKSRequest; };