/** * DOCX Writers - Headers & Footers * * Renders word/header{N}.xml and word/footer{N}.xml parts. */ import type { XmlSink } from "../../xml/types.js"; import type { HeaderFooterContent, Watermark } from "../types.js"; import type { RenderHelpers } from "./render-context.js"; /** Render a header part (word/header{N}.xml). */ export declare function renderHeader(xml: XmlSink, content: HeaderFooterContent, helpers?: RenderHelpers): void; /** Render a footer part (word/footer{N}.xml). */ export declare function renderFooter(xml: XmlSink, content: HeaderFooterContent, helpers?: RenderHelpers): void; /** Render a header part containing a watermark. */ export declare function renderWatermarkHeader(xml: XmlSink, watermark: Watermark, imageRId?: string): void;