import { ViewContainerRef, ComponentFactoryResolver } from '@angular/core'; import { OnInit, AfterViewInit } from '@angular/core'; import { ACUtils } from '../../../services/ac-utils.service'; export declare class ACDynamicContainerComponent implements OnInit, AfterViewInit { private resolver; private ACUtils; showNum: number; testvar: boolean; componentData1: any; currentComponent: any; dyndata: any; dynamicComponentContainer: ViewContainerRef; constructor(resolver: ComponentFactoryResolver, ACUtils: ACUtils); ngOnInit(): void; ngAfterViewInit(): void; registerDynContent(data: any): void; createDynComponents(comp: string): void; SetContent(data: { component: any; inputs: any; }): void; }