import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';
import { MathMLElement } from '../../../protocols/mathml-element';
export declare class MMultiscripts implements ToLaTeXConverter {
    private readonly _mathmlElement;
    constructor(mathElement: MathMLElement);
    convert(): string;
    private _prescriptLatex;
    private _postscriptLatex;
    private _wrapInParenthesisIfThereIsSpace;
    private _isPrescripts;
}
