import { ApplicationRef, ComponentFactory, ComponentRef, Injector, TemplateRef, ViewRef } from '@angular/core';
import { DocumentRef } from 'ng-devui/window-ref';
import * as i0 from "@angular/core";
export declare class OverlayContainerRef {
    private _appRef;
    private documentRef;
    private _injector;
    constructor(_appRef: ApplicationRef, documentRef: DocumentRef, _injector: Injector);
    insert(viewRef: ViewRef): ViewRef;
    remove(viewRef: ViewRef): void;
    createEmbeddedView<C>(templateRef: TemplateRef<any>, context?: C): ViewRef;
    createComponent<C>(componentFactory: ComponentFactory<C>, injector?: Injector, projectableNodes?: any[][]): ComponentRef<C>;
    static ɵfac: i0.ɵɵFactoryDeclaration<OverlayContainerRef, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<OverlayContainerRef>;
}
