import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core'; import { NzNotificationService } from '../notification'; export declare class NzRichTextEditorNetComponent implements OnInit, OnChanges { private notification; editorId: string; value: string; valueType: string; changeInterval: number; cache: boolean; cacheId: string; imgBase64: boolean; imgUploadUrl: string; uploadOptions: { uploadImgMaxSize: number; uploadImgMaxLength: number; uploadImgParams: any; uploadImgParamsWithUrl: boolean; uploadImgTimeout: number; withCredentials: boolean; customAlert: Function; }; input: EventEmitter; onchange: EventEmitter; editor: any; constructor(notification: NzNotificationService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; createNotification(type: string, title: string, content: string): void; }