import { ElementRef, OnInit } from '@angular/core';
import * as RoosterJs from 'roosterjs';
export declare class EditorDirective implements OnInit {
    private el;
    plugins?: RoosterJs.EditorPlugin[];
    defaultFormat?: RoosterJs.DefaultFormat;
    initialContent?: string;
    disableRestoreSelectionOnFocus?: boolean;
    omitContentEditableAttributeChanges?: boolean;
    private _editor;
    readonly editor: RoosterJs.Editor;
    constructor(el: ElementRef);
    ngOnInit(): void;
}
