/** * DOCX Writers - TextBox * * Renders text boxes using VML (v:shape) with mc:AlternateContent. */ import type { XmlSink } from "../../xml/types.js"; import type { TextBox } from "../types.js"; /** Render a text box as a VML shape within a paragraph. */ export declare function renderTextBox(xml: XmlSink, textBox: TextBox): void;