import { SessionManager } from '../session/manager.js'; import { type ToolResponse } from './types.js'; /** * Convert a DOCX document to OpenDocument Text (`.odt`) via odf-core's native converter. * * Conversion is semantic and intentionally lossy (no round-trip guarantee): visible text, * headings, basic run formatting, lists, and tables are mapped; everything downgraded is * itemized in the returned `lossiness` summary. The converted package is validated with * `validateOdfArchiveSafety` BEFORE writing — an unsafe artifact is never persisted. * * DOCX in, ODT out. `file_path`-first like every session tool; Google Docs is out of scope, * and a `.odt` input is rejected by session resolution (there is nothing to convert). */ export declare function convertToOdt(manager: SessionManager, params: { file_path?: string; google_doc_id?: string; output_path?: string; allow_overwrite?: boolean; }): Promise; //# sourceMappingURL=convert_to_odt.d.ts.map