import { AbstractMathDocument } from '../../core/MathDocument.js'; import { OptionList } from '../../util/Options.js'; import { HTMLMathItem } from './HTMLMathItem.js'; import { HTMLDomStrings } from './HTMLDomStrings.js'; import { DOMAdaptor } from '../../core/DOMAdaptor.js'; import { InputJax } from '../../core/InputJax.js'; import { ProtoItem, Location } from '../../core/MathItem.js'; import { StyleList } from '../../util/StyleList.js'; export declare type HTMLNodeArray = [N | T, number][][]; export declare class HTMLDocument extends AbstractMathDocument { static KIND: string; static OPTIONS: OptionList; protected styles: StyleList[]; domStrings: HTMLDomStrings; constructor(document: any, adaptor: DOMAdaptor, options: OptionList); protected findPosition(N: number, index: number, delim: string, nodes: HTMLNodeArray): Location; protected mathItem(item: ProtoItem, jax: InputJax, nodes: HTMLNodeArray): HTMLMathItem; findMath(options: OptionList): this; updateDocument(): this; protected addPageElements(): void; addStyleSheet(): void; protected findSheet(head: N, id: string): N; removeFromDocument(restore?: boolean): this; documentStyleSheet(): N; documentPageElements(): N; addStyles(styles: StyleList): void; getStyles(): StyleList[]; }