/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphDescriptor, GraphTag } from "@breadboard-ai/types"; /** * Creates a `GraphDescriptor` of a blank graph. */ export declare const blank: () => GraphDescriptor; /** * Creates a `GraphDescriptor` of a blank graph with inputs/outputs pre-set * to the LLM content array schema. */ export declare const blankLLMContent: (...tags: GraphTag[]) => GraphDescriptor; //# sourceMappingURL=blank.d.ts.map