import { IButtonMenu, IDomEditor } from '@wangeditor/editor'; declare class TextToFormula implements IButtonMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; getValue(editor: IDomEditor): string | boolean; isActive(editor: IDomEditor): boolean; isDisabled(editor: IDomEditor): boolean; exec(editor: IDomEditor, value: string | boolean): void; } export default TextToFormula;