import type { Command } from 'commander'; import type { JsonWebKey } from 'node:crypto'; import { type PhotonAuthIssuer } from '../../auth/mcp-jwt.js'; export declare function photonAuthDir(name: string): string; export declare function loadPhotonAuth(name: string): Promise<{ dir: string; issuer: PhotonAuthIssuer; privateJwk: JsonWebKey; publicJwk: JsonWebKey; jwks: { keys: JsonWebKey[]; }; }>; export declare function registerAuthCommands(program: Command): void; //# sourceMappingURL=auth.d.ts.map