/** * ReportStore implementation that survives daemon restarts. * * Owns its Map directly (rather than wrapping createReportStore) so restored * slots keep their original updatedAt verbatim. Writes are debounced 250ms to * coalesce publish bursts into one snapshot. * * filePath is injection-only: the production path is resolved solely at the * daemon runtime call site (api-server-init.ts), never inside this module -- * createApiServer's default stays the in-memory store so its ~30 test call * sites never touch the real ~/.mama (the PR #126 pollution class). */ import type { ReportStore } from './report-handler.js'; export declare function createPersistentReportStore(opts: { filePath: string; }): ReportStore; //# sourceMappingURL=report-persistence.d.ts.map