import { Node } from "@tiptap/core"; import { AllVariableUpdateListeners, MathVariables } from "./latex-evaluation/evaluate-expression"; import { MathExtensionOption } from "./util/options"; declare module '@tiptap/core' { interface Storage { inlineMath: { variables: MathVariables; variableListeners: AllVariableUpdateListeners; }; } } export declare const InlineMathNode: Node; export declare function getRegexFromOptions(mode: "inline" | "block", options: MathExtensionOption): string | undefined;