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 EditorDirective extends EditorBase {
    protected editorControl: NgControl;
    protected _config: TrumbowygOptions;
    protected _editor: ElementRef;
    options: TrumbowygOptions | null;
    placeholder: string | null;
    constructor(editorControl: NgControl, _config: TrumbowygOptions, _editor: ElementRef);
}
