import type { LTEnvelope, LTReturn } from '../../../types'; /** * MCP Triage Deterministic workflow (leaf). * * Invokes a matched compiled YAML workflow for triage remediation. * Called by mcpTriageRouter when a compiled workflow matches * the triage context with high confidence. * * The result is wrapped as correctedData so the triage vortex exit * logic in mcpTriage can route it back to the original workflow. */ export declare function mcpTriageDeterministic(envelope: LTEnvelope): Promise;