/** * @description justify right menu * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import BaseMenu from './BaseMenu'; declare class JustifyRightMenu extends BaseMenu { readonly title: string; readonly iconSvg = ""; exec(editor: IDomEditor, _value: string | boolean): void; } export default JustifyRightMenu;