import { ElementRef, AfterViewInit, EventEmitter } from '@angular/core'; import { DomHandler } from '../dom/domhandler'; import { ControlValueAccessor } from '@angular/forms'; export declare const EDITOR_VALUE_ACCESSOR: any; export declare class Editor implements AfterViewInit, ControlValueAccessor { el: ElementRef; domHandler: DomHandler; onTextChange: EventEmitter; onSelectionChange: EventEmitter; toolbar: any; style: any; styleClass: string; placeholder: string; readOnly: boolean; formats: string[]; value: string; onModelChange: Function; onModelTouched: Function; quill: any; constructor(el: ElementRef, domHandler: DomHandler); ngAfterViewInit(): void; writeValue(value: any): void; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; } export declare class EditorModule { }