import { OnDestroy, AfterViewInit, EventEmitter, OnChanges } from '@angular/core'; import { NzModalService } from 'ng-zorro-antd/modal'; import { TinymceService } from './tinymce.service'; export declare class TinymceComponent implements OnChanges, OnDestroy, AfterViewInit { private modal; private tinymceService; key: any; mySelector: string; myModel: any; uploadUrl: any; myModelChange: EventEmitter; maxlimit: EventEmitter; file: any; linkAssume: boolean; isClear: any; height: number; width: string; toolbarMode: string; toolbar: string[]; plugins: string[]; hasChange: boolean; hasInit: boolean; initSuccess: boolean; constructor(modal: NzModalService, tinymceService: TinymceService); ngAfterViewInit(): void; init(): void; ngOnChanges(event: any): void; ngOnDestroy(): void; getText(str: any): string; handleStr(str: any): string; }