import { Dialog } from "fwtoolkit"; import type { Node } from "prosemirror-model"; import type { Editor } from "../types.js"; /** * Class to work with formula dialog */ export declare class MathDialog { editor: Editor; node: Node | null; equationSelected: boolean; equation: string; dialog: InstanceType | undefined; mathliveDOM: HTMLElement | null; mathField: unknown; constructor(editor: Editor); init(): void; /** * Get latex representation as text */ getLatex(): string; } //# sourceMappingURL=math.d.ts.map