/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphDescriptor, InspectableModule, InspectableModuleCache, InspectableModules, ModuleIdentifier, Module as ModuleType } from "@breadboard-ai/types"; export declare class ModuleCache implements InspectableModuleCache { #private; get(id: ModuleIdentifier): InspectableModule | undefined; add(id: ModuleIdentifier, module: ModuleType): void; remove(id: ModuleIdentifier): void; modules(): InspectableModules; rebuild(graph: GraphDescriptor): void; } //# sourceMappingURL=module.d.ts.map