export type NotebookEntry = { id: string; title: string; body: string; tags: string[]; createdAt: string; updatedAt: string; }; export type NotesStore = { entries: NotebookEntry[]; }; export declare function appendNotebookMarkdown(section: string, content: string): Promise<{ path: string; section: string; appendedAt: string; }>; export declare function readNotebookMarkdown(): Promise; export declare function addNotebookEntry(input: { title: string; body: string; tags?: string[]; }): Promise; export declare function listNotebookEntries(limit?: number): Promise; export declare function searchNotebook(query: string, limit?: number): Promise; export declare function getNotebookPaths(): Promise<{ markdown: string; json: string; }>; //# sourceMappingURL=notebook.d.ts.map