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