import { PrioritizedList } from '../util/PrioritizedList.js'; import { OptionList } from '../util/Options.js'; import { Handler } from './Handler.js'; import { MathDocument } from './MathDocument.js'; export declare class HandlerList extends PrioritizedList> { register(handler: Handler): Handler; unregister(handler: Handler): void; handlesDocument(document: any): Handler; document(document: any, options?: OptionList): MathDocument; }