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