import { ComponentFactoryResolver, ComponentRef, Type } from '@angular/core'; import { InjectionsService } from '../injections.service'; import { Observable } from 'rxjs'; export declare class InjectionService { private componentFactoryResolver; private injectionsService; componentFactories: Array>; constructor(componentFactoryResolver: ComponentFactoryResolver, injectionsService: InjectionsService); /** * */ delete(componentRef: ComponentRef): void; /** * */ post(componentType: Type): Observable>; }