/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphDescriptor, InspectableKitCache, InspectableNodeType, Kit, MutableGraph, NodeTypeIdentifier } from "@breadboard-ai/types"; export { createBuiltInKit, KitCache }; declare function createBuiltInKit(): Kit; declare class KitCache implements InspectableKitCache { #private; constructor(mutable: MutableGraph); getType(id: NodeTypeIdentifier): InspectableNodeType | undefined; addType(id: NodeTypeIdentifier, type: InspectableNodeType): void; rebuild(graph: GraphDescriptor): void; } //# sourceMappingURL=kits.d.ts.map