import type { JwtVerifierConfig } from "./jwtVerifier"; export declare const TEST_AUTHORIZATION_SERVER = "https://auth.test.example.com"; export declare const TEST_JWKS_URI = "https://auth.test.example.com/.well-known/jwks.json"; export declare const TEST_JWT_VERIFIER_CONFIG: JwtVerifierConfig; export declare function generateTestKeyPair(): Promise<{ publicKey: CryptoKey; privateKey: CryptoKey; publicJwk: import("jose").JWK; }>; export declare function signTestJwt(privateKey: CryptoKey, overrides?: { authorizationServer?: string; issuer?: string; expirationTime?: string | number; }): Promise; export declare function makeJwksResponse(publicJwk: object): Response; export declare function resolveUrl(input: string | URL | Request): string;