import { SimpleChanges, OnInit, OnChanges, ViewContainerRef, ComponentFactoryResolver, EventEmitter } from '@angular/core'; export declare class EForm implements OnInit, OnChanges { private componentFactoryResolver; form: ViewContainerRef; layout: any; onChange: EventEmitter<{ name: string; value: any; }>; constructor(componentFactoryResolver: ComponentFactoryResolver); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; load(): void; valueChange(event: { name: string; value: any; }): void; }