/** * @description upload attachment menu * @author wangfupeng */ import { IDomEditor } from '@wangeditor/editor'; import { IButtonMenu } from '@wangeditor/editor'; declare class UploadAttachmentMenu 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 UploadAttachmentMenu;