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