/** * @description view link menu * @author wangfupeng */ import { IButtonMenu, IDomEditor } from '@wangeditor-next/core'; declare class ViewLink implements IButtonMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; private getSelectedLinkElem; getValue(editor: IDomEditor): string | boolean; isActive(_editor: IDomEditor): boolean; isDisabled(editor: IDomEditor): boolean; exec(editor: IDomEditor, value: string | boolean): void; } export default ViewLink;