import type { MapNodeConfig, NodeState, WorkflowContext, WorkflowNode } from "../../types.js"; import type { NodeExecutionResult } from "./types.js"; import type { NodeStrategyRuntime } from "./node-strategy-types.js"; interface ExecuteMapNodeStrategyInput { node: WorkflowNode; config: MapNodeConfig; context: WorkflowContext; nodeStates: Record; /** Declared node ids in the graph that owns this map node. */ parentNodeIds: ReadonlySet; runtime: NodeStrategyRuntime; abortSignal?: AbortSignal; } export declare function executeMapNodeStrategy(input: ExecuteMapNodeStrategyInput): Promise; export {}; //# sourceMappingURL=map-node-strategy.d.ts.map