/** * @description emotion menu * @author wangfupeng */ import { IDomEditor, IDropPanelMenu } from '@wangeditor-next/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;