/*** * @file:富文本编辑器 * @author: linkun.he * @Date: 2020-05-11 15:13:07 */ import { EventEmitter } from '@angular/core'; import { ControlValueAccessorService } from '../../control-value-accessor.service'; export declare class FormRichEditorComponent extends ControlValueAccessorService { value: any; prop: string; uploadUrl: string; downloadUrl: string; height: string; editModel: any; valueChange: EventEmitter; imgUpload: EventEmitter; editorChange(value: any): void; onImgUpload(evt: any): void; }