/** * @description download attachment menu * @author wangfupeng */ import { IDomEditor } from '@wangeditor/editor'; import { IButtonMenu } from '@wangeditor/editor'; declare class DownloadAttachmentMenu implements IButtonMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; readonly alwaysEnable = true; getValue(editor: IDomEditor): string | boolean; isActive(editor: IDomEditor): boolean; exec(editor: IDomEditor, value: string | boolean): void; isDisabled(editor: IDomEditor): boolean; private getSelectedElem; } export default DownloadAttachmentMenu;