import { t as OmmlDiagnostic } from "../shared-DHu5jDJf.js"; import { XmlElement, XmlNode } from "ooxml.js"; import { MathMlNode } from "document-schema.js"; //#region src/omml/read.d.ts interface OmmlReadResult { readonly mathml: MathMlNode[]; readonly diagnostics: readonly OmmlDiagnostic[]; } declare function readOfficeMath(element: XmlElement): OmmlReadResult; declare function collectOfficeMathElements(nodes: readonly XmlNode[]): readonly XmlElement[]; //#endregion export { OmmlReadResult, collectOfficeMathElements, readOfficeMath };