import { HandlerList } from './core/HandlerList.js'; import { OptionList } from './util/Options.js'; import { MathDocument } from './core/MathDocument.js'; export declare const MathJax: { version: string; handlers: HandlerList; document: (document: any, options: OptionList) => MathDocument; handleRetriesFor: (code: Function) => Promise<{}>; retryAfter: (promise: Promise) => void; asyncLoad: (file: string) => any; };