import { MathObjectConverter } from '../types.js'; /** * Convert m:bar (overbar/underbar) to MathML or . * * OMML structure: * m:bar → m:barPr (optional: m:pos@m:val="top"|"bot"), m:e (base expression) * * MathML output: * top: base * bot (default): base * * Word renders an underbar when no position is specified, so the default is "bot". * * @spec ECMA-376 §22.1.2.7 */ export declare const convertBar: MathObjectConverter; //# sourceMappingURL=bar.d.ts.map