import { AbstractInputJax } from '../core/InputJax.js'; import { OptionList } from '../util/Options.js'; import { MathItem } from '../core/MathItem.js'; import { FindAsciiMath } from './asciimath/FindAsciiMath.js'; export declare class AsciiMath extends AbstractInputJax { static NAME: string; static OPTIONS: OptionList; protected findAsciiMath: FindAsciiMath; constructor(options: OptionList); compile(math: MathItem): any; findMath(strings: string[]): { math: string; start: { i?: number; n?: number; delim?: string; node?: N | T; }; end: { i?: number; n?: number; delim?: string; node?: N | T; }; open?: string; close?: string; n?: number; display: boolean; }[]; }