import { XmlComponent } from '../../../xml-components'; import { MathComponent } from "../math-component"; export interface IMathLimitUpperOptions { readonly children: readonly MathComponent[]; readonly limit: readonly MathComponent[]; } export declare class MathLimitUpper extends XmlComponent { constructor(options: IMathLimitUpperOptions); }