import type { TriageResponseDeps } from './types'; declare const getUpstreamTasks: (originId: string) => Promise, getEscalationHistory: (originId: string) => Promise, getToolTags: (workflowType: string) => Promise, loadTriageTools: (tags?: string[] | undefined) => Promise<{ toolIds: string[]; inventory: string; strategy: string; }>, callTriageTool: (qualifiedName: string, args: Record) => Promise, callTriageLLM: (messages: any[], toolIds?: string[] | undefined) => Promise; declare const ltEnrichEscalationRouting: (input: { escalationId: string; signalRouting: { taskQueue: string; workflowType: string; workflowId: string; signalId: string; }; taskId?: string; claimForUserId?: string; }) => Promise; export declare const MAX_TOOL_ROUNDS: number; /** Proxied activity refs passed to response handlers */ export declare const responseDeps: TriageResponseDeps; export { getUpstreamTasks, getEscalationHistory, getToolTags, loadTriageTools, callTriageTool, callTriageLLM, ltEnrichEscalationRouting, };