import { MathItem } from '../../../core/MathItem.js'; import { MathDocument } from '../../../core/MathDocument.js'; import { Handler } from '../../../core/Handler.js'; export declare type FILTERDATA = { math: MathItem; document: MathDocument; data: N; }; export declare class Mml3 { static XSLT: string; protected transform: (node: N, doc: MathDocument) => N; constructor(document: MathDocument); mmlFilter(args: FILTERDATA): void; } export declare function Mml3Handler(handler: Handler): Handler;