import { ElementRef } from '@angular/core';
import { NgControl } from '@angular/forms';
import { EditorBase } from '../../commons/editor-base';
import { TrumbowygOptions } from '../../configs/trumbowyg-options';
export declare class EditorComponent extends EditorBase {
    protected editorControl: NgControl;
    protected _config: TrumbowygOptions;
    options: TrumbowygOptions | null;
    placeholder: string | null;
    _editor: ElementRef;
    constructor(editorControl: NgControl, _config: TrumbowygOptions);
}
