export interface NoteAgentContextRecord { noteId: string; noteUpdatedAt: number; contextVersion: string; generatedAt: number; payload: T; } export declare function getNoteAgentContextRecord(noteId: string): NoteAgentContextRecord | null; export declare function upsertNoteAgentContextRecord(record: NoteAgentContextRecord): void; export declare function deleteNoteAgentContextRecord(noteId: string): void;