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