import type { DhfExportPlugin, DhfExportResult } from '../export-plugin.js'; import type { DhfDocument } from '../document-ir.js'; export declare class DocxExportPlugin implements DhfExportPlugin { format: "docx"; extension: string; mimeType: string; render(doc: DhfDocument): Promise; } /** Table-of-contents field — Word populates it on "Update Field" (F9) */ export declare function wordTocField(): string; /** Footer with PAGE/NUMPAGES fields, referenced by the WordSection page setup */ export declare function wordPageFooter(): string; /** Page setup CSS enabling US Letter pages with the numbered footer */ export declare const WORD_SECTION_CSS = "\n @page WordSection1 { size: 8.5in 11.0in; margin: 1.0in; mso-header-margin: 0.5in; mso-footer-margin: 0.5in; mso-footer: f1; }\n div.WordSection1 { page: WordSection1; }\n p.MsoFooter { font-size: 9pt; color: #6B7280; }\n"; //# sourceMappingURL=docx-exporter.d.ts.map