import type { LTEnvelope, LTReturn } from '../../../types'; /** * MCP Triage Router (orchestrator/container). * * Entry point for triage requests. Determines whether a compiled * deterministic workflow can handle the triage issue or whether * dynamic MCP orchestration is needed. * * Phase 1: FTS + tag discovery of compiled workflows * Phase 2: LLM-as-judge matching + input extraction * Route: mcpTriageDeterministic (compiled match) OR mcpTriage (dynamic) */ export declare function mcpTriageRouter(envelope: LTEnvelope): Promise;