import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';
import { MathMLElement } from '../../../protocols/mathml-element';
export declare class MI implements ToLaTeXConverter {
    private readonly _mathmlElement;
    private readonly utf8Converter;
    constructor(mathElement: MathMLElement);
    convert(): string;
    private getMathVariant;
    private wrapInMathVariant;
}
