/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphToRun, OutputValues, RunArguments, TraversalResult } from "@breadboard-ai/types"; import { RunResult } from "../run.js"; export declare class NodeInvoker { #private; constructor(args: RunArguments, graph: GraphToRun, next: (result: RunResult) => Promise); invokeNode(result: TraversalResult, invocationPath: number[]): Promise; } //# sourceMappingURL=node-invoker.d.ts.map