/** * DOCX Writers - Table of Contents * * Renders TOC as a structured document tag (SDT) with field codes. */ import type { XmlSink } from "../../xml/types.js"; import type { TableOfContents } from "../types.js"; /** Render a Table of Contents block. */ export declare function renderTableOfContents(xml: XmlSink, toc: TableOfContents): void;