import { Router } from 'express';
import type { Config } from '../../config.js';
/**
 * Well-known discovery endpoints:
 *   - `/.well-known/oauth-protected-resource` (RFC 9728)
 *   - `/.well-known/mcp` (MCP-specific discovery)
 *
 * Оба статичны (зависят только от config), отдаются без auth.
 */
export interface CreateWellKnownOptions {
    config: Config;
    toolNames: string[];
}
export declare function createWellKnownRouter(opts: CreateWellKnownOptions): Router;
//# sourceMappingURL=wellKnown.d.ts.map