import type { ContextPath, DagPlan, PlanNode } from '@mcp-abap-adt/llm-agent'; /** * Deterministically compose a worker's task from the node's intent, the plan * objective, the outputs of THIS node's dependencies, and the original prompt * (only when needsInput). No LLM. DAG-scoped (NOT the linear composeTask). */ export declare function composeNodeTask(node: PlanNode, plan: DagPlan, inputText: string, depOutputs: Record, ancestorContext?: ContextPath): string; //# sourceMappingURL=compose-node-task.d.ts.map