import { EventEmitter, AfterViewInit } from '@angular/core'; import { IDomEditor, IEditorConfig, IToolbarConfig, Toolbar } from '@wangeditor/editor'; import * as i0 from "@angular/core"; export declare type NcModeType = 'default' | 'simple'; export declare class EditorComponent implements AfterViewInit { /** 编辑器模式 */ ncEditorMode: NcModeType; /** 工具栏模式 */ ncToolbarMode: NcModeType; /** 编辑器配置 */ ncEditorConfig: Partial; /** 工具栏配置 */ ncToolbarConfig: Partial; /** 初始化内容 */ ncHtml: string; /** 编辑器容器id */ ncDomId: string; /** 编辑器加载完成事件 */ ncLoaded: EventEmitter<{ editor: IDomEditor; toolbar: Toolbar; }>; editor: IDomEditor; toolbar: Toolbar; constructor(); ngAfterViewInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }