/** * DOCX Module — Glossary (Building Blocks) Part Writer * * Serialises a {@link GlossaryDocument} into the canonical * `word/glossary/document.xml` OOXML form: * * ```xml * * * * * * * * * * … body content … * * * * ``` * * Lives in the writer layer (not `advanced/`) so the packager can depend on * it without creating a `advanced/ → writer/` import cycle. */ import type { GlossaryDocument } from "../types.js"; /** Render a {@link GlossaryDocument} to a `word/glossary/document.xml` string. */ export declare function renderGlossaryDocument(glossary: GlossaryDocument): string;