import type { OrgSnapshot } from './types.js'; interface PersistedSnapshot { snapshot: OrgSnapshot; updatedAt: string; } export declare function readPersistedSnapshot(): PersistedSnapshot | null; export declare function writePersistedSnapshot(snapshot: OrgSnapshot): PersistedSnapshot; export declare function clearPersistedSnapshot(): void; export {};