import { GardenNode } from '../types.js'; export declare class BrainGarden { private brain; private forgetting; private causal; constructor(); snapshot(limit?: number): Promise; /** Compact stats used by the dashboard widget. */ stats(): Promise<{ nodes: number; avgBloom: number; linkedFraction: number; }>; private kindFromCategory; } export declare function getBrainGarden(): BrainGarden; export declare function resetBrainGardenForTests(): void; //# sourceMappingURL=brain-garden.d.ts.map