import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { FormConfig } from './models'; export declare class DynamicFormComponent implements OnInit { form: FormGroup; config: FormConfig; value: any; submitted: EventEmitter; constructor(); ngOnInit(): void; handleSubmit(): void; /** * Runs through a FormGroup controls recursively triggering valueChanges on all descendants controls * @param formGroup formGroup that needs all its controls to have valueChanges triggered */ triggerOnChangesForChildren(formGroup: FormGroup): void; }