import { DefaultControlValueAccessor } from './../common/default-control-value-accessor';
import { NgZone, OnInit, OnDestroy, AfterViewInit } from '@angular/core';
export declare class AsiTinyMCE extends DefaultControlValueAccessor implements OnInit, AfterViewInit, OnDestroy {
    private zone;
    class: string;
    label: string;
    labelPosition: 'top' | 'left' | 'right' | 'bottom' | 'bottom-center' | 'top-center';
    elementId: string;
    editor: any;
    constructor(zone: NgZone);
    ngOnInit(): void;
    ngAfterViewInit(): void;
    onModelChange(): void;
    ngOnDestroy(): void;
}
