import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import { FormItemComponentInterface } from '../../../../interface/component'; import { IFormItemsControls } from '../../../../interface/form-structure'; import { ChangeEvent, CKEditor5, CKEditorComponent } from '@ckeditor/ckeditor5-angular'; import '@ckeditor/ckeditor5-build-classic/build/translations/tr'; export declare class HtmleditorComponent implements OnInit, AfterViewInit, FormItemComponentInterface { prop: IFormItemsControls; keyOnEnter: EventEmitter; editorComponent: CKEditorComponent; mhClass: string; editorToolBars: { text: string[]; standart: string[]; advance: string[]; }; Editor: any; model: { editorData: string; }; const: any; config: CKEditor5.Config; datasetId: number; formId: number; constructor(); onChange({ editor }: ChangeEvent): void; ngOnInit(): void; ngAfterViewInit(): void; }