import type { Note, NoteIndexEntry, NotesListQuery } from '../../notes/types.js'; export declare function upsertNoteRecord(note: Note): void; export declare function getNoteRecord(noteId: string): Note | null; export declare function deleteNoteRecord(noteId: string): boolean; export declare function listNoteRecords(query?: NotesListQuery): { items: NoteIndexEntry[]; total: number; limit: number; offset: number; hasMore: boolean; };