/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LifecyclePathRegistryEntry } from "@breadboard-ai/types"; export declare const emptyEntry: () => { children: never[]; data: null; }; export declare class Registry { #private; root: LifecyclePathRegistryEntry; constructor(root?: LifecyclePathRegistryEntry); find(path: number[]): LifecyclePathRegistryEntry | null; create(path: number[]): LifecyclePathRegistryEntry; } //# sourceMappingURL=registry.d.ts.map