/** * DOCX Reader - Image Parsers * * Parsers for inline and floating images (wp:inline / wp:anchor). * These are pure parsers that don't depend on ReaderContext. */ import type { XmlElement } from "../../xml/types.js"; import type { FloatingImage, RunContent } from "../types.js"; declare function parseDrawingContent(drawingEl: XmlElement, content: RunContent[]): void; declare function parseFloatingImage(anchorEl: XmlElement): FloatingImage | undefined; export { parseDrawingContent, parseFloatingImage };