/** * DOCX Reader - Math Parser * * Parses OMML (Office Math Markup Language) elements (m:* namespace) into * MathContent / MathBlock model objects. Each m:* element is mapped to its * corresponding model interface (MathFraction, MathRadical, MathDelimiter, etc). */ import type { XmlElement } from "../../xml/types.js"; import type { MathContent, MathBlock } from "../types.js"; declare function parseMathContent(el: XmlElement): MathContent[]; declare function parseMathBlock(oMathParaEl: XmlElement): MathBlock; export { parseMathContent, parseMathBlock };