/**
 * MCP Tool Definitions for Orchestrators
 *
 * These are the ONLY tools exposed to the main LLM.
 * All 279 existing tools are hidden behind these orchestrators.
 */
import { Tool } from '@modelcontextprotocol/sdk/types.js';
export declare const ORCHESTRATOR_TOOLS: Tool[];
export declare const SUB_AGENTS: {
    frontend_debug_agent: {
        tools: string[];
        capabilities: string[];
    };
    backend_debug_agent: {
        tools: string[];
        capabilities: string[];
    };
    error_investigation_agent: {
        tools: string[];
        capabilities: string[];
    };
    metrics_collection_agent: {
        tools: string[];
        capabilities: string[];
    };
    optimization_suggestion_agent: {
        tools: string[];
        capabilities: string[];
    };
    test_generation_agent: {
        tools: string[];
        capabilities: string[];
    };
    coverage_analysis_agent: {
        tools: string[];
        capabilities: string[];
    };
};
export declare function routeToOrchestrator(userInput: string): string;
//# sourceMappingURL=orchestrator-tools.d.ts.map