import { MathObjectConverter } from '../types.js'; /** * Convert m:eqArr (equation array) to MathML . * * OMML structure: * m:eqArr → m:eqArrPr (optional), m:e* (one element per row) * * MathML output: * * row-content * ... * * * Unlike m:m (matrix), equation arrays have one cell per row and are * typically left-aligned. Used for systems of equations. * * @spec ECMA-376 §22.1.2.34 */ export declare const convertEquationArray: MathObjectConverter; //# sourceMappingURL=equation-array.d.ts.map