/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphDescriber, GraphIdentifier, InputValues, MutableGraph, NodeDescriberContext, NodeDescriberResult, Outcome, Schema } from "@breadboard-ai/types"; import { GraphDescriptorHandle } from "./graph-descriptor-handle.js"; export { GraphDescriberManager }; /** * Contains all machinery that allows * describing a node or a graph */ declare class GraphDescriberManager implements GraphDescriber { #private; readonly handle: GraphDescriptorHandle; readonly mutable: MutableGraph; private readonly params; private readonly exports; private constructor(); describe(inputs?: InputValues, _inputSchema?: Schema, _outputSchema?: Schema, context?: NodeDescriberContext): Promise; static create(graphId: GraphIdentifier, cache: MutableGraph): Outcome; } //# sourceMappingURL=graph-describer-manager.d.ts.map