import Node from "./Node"; import "katex/dist/katex.min.css"; import "@benrbray/prosemirror-math/style/math.css"; import mathRule from "../rules/math"; export default class Math extends Node { get name(): string; get schema(): { group: string; content: string; inline: boolean; atom: boolean; toDOM: () => (string | number | { class: string; spellcheck: string; })[]; parseDOM: { tag: string; }[]; }; get rulePlugins(): (typeof mathRule)[]; commands({ type }: { type: any; }): () => import("prosemirror-commands").Command; inputRules({ schema }: { schema: any; }): import("prosemirror-inputrules").InputRule[]; keys({ type }: { type: any; }): { "Mod-Space": import("prosemirror-commands").Command; Backspace: import("prosemirror-commands").Command; }; get plugins(): import("prosemirror-state").Plugin[]; toMarkdown(state: any, node: any): void; parseMarkdown(): { node: string; }; } //# sourceMappingURL=Math.d.ts.map