/** * src/oauth/discovery.ts — OAuth 2.1 Discovery endpoints. * * Implements: * GET /.well-known/oauth-protected-resource (RFC 8707) * GET /.well-known/oauth-authorization-server (RFC 8414) * * All URLs use https:// per the OAuth 2.1 specification. */ import { type Router } from "express"; export declare const PROTECTED_RESOURCE_METADATA_URL = "https://mcp.openephemeris.com/.well-known/oauth-protected-resource"; export declare const oauthDiscoveryRouter: Router;