/** * Memory pruning — LLM-driven review of low-value semantic notes that * expires vague/outdated notes and merges duplicates. Runs as a phase of * the all-threads consolidation cycle and on its own schedule. */ import type { Database } from "../data/memory/schema.js"; import { type PruningReport } from "../data/memory/consolidation.js"; export declare function runMemoryPruning(db: Database, options?: { maxNotes?: number; dryRun?: boolean; }): Promise; //# sourceMappingURL=memory-pruning.service.d.ts.map