import { ComponentRef, ComponentFactoryResolver, ApplicationRef, Injector } from '@angular/core'; export declare class NgbitService { private componentFactoryResolver; private appRef; private injector; constructor(componentFactoryResolver: ComponentFactoryResolver, appRef: ApplicationRef, injector: Injector); getComponentRef(component: any): ComponentRef; appendToDOM(componentRef: ComponentRef): void; configureComponentInstance(componentRef: ComponentRef, config: any): ComponentRef; removeFromDOM(componentRef: ComponentRef): void; createComponentFactory(component: any): import("@angular/core").ComponentFactory; }