import { SessionManager } from '../session/manager.js'; import { type ToolResponse } from './types.js'; /** * Export a document to a portable rendering (Markdown, HTML, or plain text). Writes the * rendering to a file (this tool is NOT read-only) and returns the written path, byte count, * and — unless `include_markdown: false` — the rendered content under a format-agnostic * `content` key (plus a legacy `markdown` key for the Markdown format). * * DOCX only. Google Docs (`google_doc_id`) is out of scope for this tool. */ export declare function exportDocument(manager: SessionManager, params: { file_path?: string; session_id?: string; google_doc_id?: string; format?: string; output_path?: string; allow_overwrite?: boolean; include_markdown?: boolean; }): Promise; //# sourceMappingURL=export.d.ts.map