/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { InputValues, NodeIdentifier } from "@breadboard-ai/types"; import { type InspectableRun } from "@google-labs/breadboard"; import { Result, RunNodeConfig } from "./types"; export { getRunNodeConfig }; declare function getRunNodeConfig(nodeId: NodeIdentifier, nodeConfig: InputValues | undefined, run: InspectableRun | undefined): Promise>>; //# sourceMappingURL=run-node.d.ts.map