import { ComponentFactory, ComponentFactoryResolver, Type } from "@angular/core"; export declare class ComponentService { private resolver; static components: { [type: string]: Type; }; constructor(resolver: ComponentFactoryResolver); resolve(component: string): ComponentFactory; static add(key: string, component: any): void; }