import { AfterContentInit, AfterViewChecked, AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import Quill from 'quill'; import { BehaviorSubject, Subject } from 'rxjs'; import * as i0 from "@angular/core"; import * as i1 from "@angular/common"; import * as i2 from "@axulus/uikit/api"; export declare const EDITOR_VALUE_ACCESSOR: any; export declare class Editor implements OnInit, AfterViewInit, AfterViewChecked, AfterContentInit, ControlValueAccessor, OnDestroy { el: ElementRef; onTextChange: EventEmitter; onSelectionChange: EventEmitter; toolbar: any; style: any; styleClass: string; placeholder: string; formats: string[]; modules: any; bounds: any; scrollingContainer: any; debug: string; onInit: EventEmitter; templates: QueryList; value: string; _readonly: boolean; onModelChange: Function; onModelTouched: Function; quill: Quill; headerTemplate: TemplateRef; filled$: BehaviorSubject; private quillElements; unsubscribe$: Subject; constructor(el: ElementRef); ngOnInit(): void; ngAfterViewInit(): void; ngAfterViewChecked(): void; ngAfterContentInit(): void; ngOnDestroy(): void; writeValue(value: any): void; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; getQuill(): Quill; get readonly(): boolean; set readonly(val: boolean); private initQuillEditor; private initQuillElements; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class EditorModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; }