import type { CortexStore } from '../db/store.js'; export interface MemoryValidationReportItem { id: string; kind: string; subject: string | null; status: 'current' | 'stale' | 'unknown'; retrieval_score?: number; missing_references: string[]; references: Array<{ raw_reference: string; normalized_path: string; status: string; }>; } export interface MemoryValidationReport { topic: string | null; current_app: { scope_key: string; head_oid: string | null; file_count: number; updated_at: string; } | null; memories: MemoryValidationReportItem[]; } export declare function validateMemory(store: CortexStore, topic?: string, limit?: number): MemoryValidationReport; //# sourceMappingURL=validate-memory.d.ts.map