import { AfterViewInit, ViewContainerRef, ComponentFactoryResolver } from '@angular/core'; export declare class ACDynamicComponent implements AfterViewInit { private resolver; arg: ACDynamicComponentArg; viewShown: boolean; dynamicComponentContainer: ViewContainerRef; ngAfterViewInit(): void; set componentData(arg: ACDynamicComponentArg); constructor(resolver: ComponentFactoryResolver); } export declare class ACDynamicComponentParam { PropertyName: string; PropertyValue: any; } export declare class ACDynamicComponentArg { ComponentName: string; Args: Array; }