import { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core'; import { DynamicComponentHostDirective } from './dynamic-component-host.directive'; import { DynamicComponentItem } from './dynamic-component-item'; export declare class ComponentContainerComponent implements OnChanges { private changeDetectorRef; componentItem: DynamicComponentItem; dynamicHost: DynamicComponentHostDirective; constructor(/*private componentFactoryResolver: ComponentFactoryResolver,*/ changeDetectorRef: ChangeDetectorRef); loadComponent(): void; ngOnChanges(changes: SimpleChanges): void; }