/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { InputValues, NodeHandlerContext, BreadboardCapability, GraphDescriptor, NodeIdentifier } from "@google-labs/breadboard"; export type InvokeNodeInputs = InputValues & { $board?: string | BreadboardCapability | GraphDescriptor; $start?: NodeIdentifier; $stopAfter?: NodeIdentifier; path?: string; board?: BreadboardCapability; graph?: GraphDescriptor; }; declare const _default: { metadata: { title: string; description: string; help: { url: string; }; }; describe: () => Promise<{ inputSchema: { type: string; properties: { $board: { type: string; properties: {}; required: never[]; additionalProperties: false; title: string; description: string; behavior: ("board" | "config")[]; }; path: { type: string; title: string; description: string; behavior: "deprecated"[]; }; }; required: never[]; additionalProperties: true; }; outputSchema: { type: string; properties: {}; required: never[]; additionalProperties: true; }; }>; invoke: (inputs: InputValues, context: NodeHandlerContext) => Promise; }; export default _default; //# sourceMappingURL=invoke.d.ts.map