import { ComponentData } from './../../models/dynamic-component/component-data.model'; import { OnInit, ViewContainerRef, ComponentFactoryResolver, AfterViewInit, Renderer2, ElementRef } from '@angular/core'; import { DynamicComponentService } from './../../services/dynamic-component.service'; export declare class ComponentFactoryComponent implements OnInit, AfterViewInit { private dynamicComponentService; private componentFactoryResolver; private vcr; private renderer; private ele; dynamicComponentContainer: ViewContainerRef; compData: ComponentData; componentData: ComponentData; guidId: any; constructor(dynamicComponentService: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver, vcr: ViewContainerRef, renderer: Renderer2, ele: ElementRef); ngOnInit(): void; ngAfterViewInit(): void; }