export declare const notebookTools: { readNotebook: import("ai").Tool<{ limitChars?: number | undefined; }, { paths: { markdown: string; json: string; }; content: string; }>; appendNotebook: import("ai").Tool<{ title: string; body: string; tags?: string[] | undefined; }, import("../memory/notebook.js").NotebookEntry>; searchNotebook: import("ai").Tool<{ query: string; limit?: number | undefined; }, import("../memory/notebook.js").NotebookEntry[]>; listNotebookEntries: import("ai").Tool<{ limit?: number | undefined; }, import("../memory/notebook.js").NotebookEntry[]>; quickNotebookNote: import("ai").Tool<{ section: string; content: string; }, { path: string; section: string; appendedAt: string; }>; }; //# sourceMappingURL=notebook.tool.d.ts.map