/** * @description editor video menu * @author */ import { IDomEditor, IModalMenu } from '@wangeditor-next/core'; import { Node as SlateNode } from 'slate'; import { DOMElement } from '../../utils/dom'; declare class Editvideo implements IModalMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; readonly showModal = true; readonly modalWidth = 300; private $content; private readonly srcInputId; private readonly posterInputId; private readonly buttonId; private getSelectedVideoNode; getValue(_editor: IDomEditor): string | boolean; isActive(_editor: IDomEditor): boolean; exec(_editor: IDomEditor, _value: string | boolean): void; isDisabled(editor: IDomEditor): boolean; getModalPositionNode(editor: IDomEditor): SlateNode | null; getModalContentElem(editor: IDomEditor): DOMElement; } export default Editvideo;