/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphDescriptor, GraphStoreArgs, InspectableGraph, InspectableGraphOptions, InspectableRunObserver, MutableGraphStore, RunObserverOptions } from "@breadboard-ai/types"; /** * * @deprecated Use GraphStore instead. */ export declare const inspect: (graph: GraphDescriptor, options?: InspectableGraphOptions) => InspectableGraph; export declare const createRunObserver: (store: MutableGraphStore, options?: RunObserverOptions) => InspectableRunObserver; export declare function createGraphStore(args: GraphStoreArgs): MutableGraphStore; //# sourceMappingURL=index.d.ts.map