import type createRemoteJWKSet from "jose/jwks/remote"; export interface GetKeySetFunction { (iss: URL): Promise>; } export interface GetIssuersFunction { (webid: URL): Promise>; } export interface AuthorizationOptions { header: string; issuers?: GetIssuersFunction; keySet?: GetKeySetFunction; }