import type { Action, ExtensionAuto } from "../../../core/index.js"; import { type MathNodeViewOptions } from "./view-and-edit.js"; import "./index.css"; export { MathNode, mathBType, mathIType } from "./MathSpecs/index.js"; export { MathBlockNodeView, MathInlineNodeView } from "./view-and-edit.js"; export { isLatexMode, parseLatexFormulas } from "./utils.js"; declare const mathIAction = "addMathInline"; declare const mathBAction = "toMathBlock"; export type MathOptions = Pick; export declare const Math: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [mathIAction]: Action; [mathBAction]: Action; } } }