/** * @description 增加缩进 * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import BaseMenu from './BaseMenu'; declare class IncreaseIndentMenu extends BaseMenu { readonly title: string; readonly iconSvg = ""; private DEFAULT_INDENT_VALUE; isDisabled(editor: IDomEditor): boolean; private getIndentValue; exec(editor: IDomEditor, _value: string | boolean): void; } export default IncreaseIndentMenu;