import Node from "./Node"; export default class MathDisplay extends Node { get name(): string; get schema(): { group: string; content: string; atom: boolean; code: boolean; toDOM: () => (string | number | { class: string; spellcheck: string; })[]; parseDOM: { tag: string; }[]; }; commands({ type }: { type: any; }): () => import("prosemirror-commands").Command; inputRules({ type }: { type: any; }): import("prosemirror-inputrules").InputRule[]; toMarkdown(state: any, node: any): void; parseMarkdown(): { node: string; }; } //# sourceMappingURL=MathDisplay.d.ts.map