import { ComponentRef, ApplicationRef, NgZone, ViewContainerRef, ComponentFactoryResolver, Injector } from '@angular/core'; import { modalI } from './model'; export declare class ModalManagerService { private componentFactoryResolver; private ngZone; private appRef; private injector; container: ComponentRef; rootViewContainerRef: ViewContainerRef; constructor(componentFactoryResolver: ComponentFactoryResolver, ngZone: NgZone, appRef: ApplicationRef, injector: Injector); setRootViewContainerRef(vRef: ViewContainerRef): void; show(obj: modalI, onOk?: Function, onClose?: Function): void; dispose(): void; }