import type { LTEscalationStrategy, ResolutionContext, ResolutionDirective } from '../../types/escalation-strategy'; /** * MCP escalation strategy. * * Checks for `resolverPayload._lt.needsTriage`. When set, builds a * triage envelope and returns `{ action: 'triage' }` so the resolution * route starts the mcpTriage workflow instead of a standard re-run. * * When `needsTriage` is not set, falls through to standard `{ action: 'rerun' }`. */ export declare class McpEscalationStrategy implements LTEscalationStrategy { onResolution(context: ResolutionContext): Promise; }