/*** * @file: * @author: haoxianhuan * @Date: 2021-08-14 14:40:39 */ import { AfterViewInit, EventEmitter } from '@angular/core'; import { ControlValueAccessorService } from '../../control-value-accessor.service'; export declare class EditorRichComponent extends ControlValueAccessorService implements AfterViewInit { editorHtmlComponentRef: any; htmlComponentRef: any; placeholder: string; readOnly: boolean; itemClass: string; maxl: number; prop: string; disabled: any; content: any; modules: { toolbar: (string[] | { size: (string | boolean)[]; }[] | { header: (number | boolean)[]; }[] | { font: any[]; }[] | ({ color: any[]; background?: undefined; } | { background: any[]; color?: undefined; })[] | { align: any[]; }[] | { list: string; }[] | { indent: string; }[])[]; imageResize: { modules: string[]; }; }; editorChanged: EventEmitter; editorCreated: EventEmitter; valueChange: EventEmitter; selectionChanged: EventEmitter; focus: EventEmitter; isLoad: boolean; currentValue: string; isDisabled: boolean; constructor(); ngAfterViewInit(): void; initValue(): void; setDisabled(): void; onEditorCreated(event: any): void; onContentChanged(event: any): void; onSelectionChanged(event: any): void; onEditorChanged(event: any): void; onFocus(event: any): void; }