/** * @description emotion menu * @author wangfupeng */ import { IDropPanelMenu, IDomEditor } from '@wangeditor/core'; import { DOMElement } from '../../../utils/dom'; declare class EmotionMenu implements IDropPanelMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; readonly showDropPanel = true; private $content; exec(editor: IDomEditor, value: string | boolean): void; getValue(editor: IDomEditor): string | boolean; isActive(editor: IDomEditor): boolean; isDisabled(editor: IDomEditor): boolean; getPanelContentElem(editor: IDomEditor): DOMElement; } export default EmotionMenu;