import { ApplicationRef, ComponentFactoryResolver, ComponentRef, Injector, ViewContainerRef, Type } from '@angular/core'; export declare class InjectionService { private applicationRef; private componentFactoryResolver; private injector; private vcRef; constructor(applicationRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver, injector: Injector); getRootViewContainerRef(): ViewContainerRef; setRootViewContainerRef(vcRef: any): void; appendNextToLocation(componentClass: Type, location: ViewContainerRef, options?: any): ComponentRef; appendNextToRoot(componentClass: Type, options?: any): ComponentRef; projectComponentInputs(component: any, options: any): any; }