export interface DocSummary { id: string; title: string; category: string; folder: string | null; } export declare function listAllDocuments(docsPath: string): DocSummary[]; export declare function resolveDocFilePath(docsPath: string, doc: DocSummary): string | null; export declare function toolListDocuments(docsPath: string, args?: { page?: number; pageSize?: number; folder?: string; }): { content: { type: "text"; text: string; }[]; }; export declare function toolReadDocument(docsPath: string, args: { id: string; maxLines?: number; maxChars?: number; }): { content: { type: "text"; text: string; }[]; }; export declare function toolSaveContext(docsPath: string, args: { folder: string; content: string; }): { content: { type: "text"; text: string; }[]; }; export declare function toolUpdateDocument(docsPath: string, args: { id: string; content: string; }): { content: { type: "text"; text: string; }[]; }; export declare function toolCreateDocument(docsPath: string, args: { title: string; category: string; folder?: string; content?: string; date?: string; }): { content: { type: "text"; text: string; }[]; }; //# sourceMappingURL=documents.d.ts.map