/** * DOCX Writers - Floating Image * * Renders wp:anchor elements for floating (non-inline) images * with full support for rotation, flip, lock anchor, outline, and wrap margins. */ import type { XmlSink } from "../../xml/types.js"; import type { FloatingImage } from "../types.js"; /** Render a floating image as a standalone paragraph with wp:anchor. */ export declare function renderFloatingImage(xml: XmlSink, img: FloatingImage, imageRemap?: ReadonlyMap, nextDocPrId?: () => number): void;