/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphDescriptor, GraphIdentifier, Result } from "@breadboard-ai/types"; export { GraphDescriptorHandle }; declare class GraphDescriptorHandle { #private; readonly graphId: GraphIdentifier; private constructor(); main(): string | undefined; url(): URL | undefined; outerGraph(): GraphDescriptor; graph(): GraphDescriptor; static create(graph: GraphDescriptor, graphId: GraphIdentifier): Result; } //# sourceMappingURL=graph-descriptor-handle.d.ts.map