import { XmlComponent } from '../../../../xml-components';
import { MathComponent } from '../../math-component';
export type IMathSuperScriptOptions = {
    readonly children: readonly MathComponent[];
    readonly superScript: readonly MathComponent[];
};
export declare class MathSuperScript extends XmlComponent {
    constructor(options: IMathSuperScriptOptions);
}
