import { type Learnings, type LearningEntry, type LearningCategory } from "../types/learnings.js"; export declare function readLearnings(): Promise; export declare function writeLearnings(learnings: Learnings): Promise; export declare function addLearning(entry: Omit): Promise; export declare function queryLearnings(filters: { category?: LearningCategory; tags?: string[]; pipeline?: string; stage?: string; confidence?: string; }): Promise; //# sourceMappingURL=learnings-manager.d.ts.map