import { ComponentFactoryResolver, OnChanges, OnInit, SimpleChanges, Type, ViewContainerRef } from '@angular/core'; export declare class DynamicComponentDirective implements OnInit, OnChanges { private componentFactoryResolver; private viewContainerRef; component: Type; inputs: any; outputs: any; private componentRef; constructor(componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef); ngOnInit(): void; loadComponent(): void; loadInputs(): void; loadOutputs(): void; ngOnChanges(changes: SimpleChanges): void; }