import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { Location } from '@angular/common'; export declare class ReactiveFormLayoutComponent implements OnInit, OnChanges { location: Location; form: FormGroup; options: any; values: any; fieldList: any; isLoading: boolean; formConfigrations: any; submitForm: EventEmitter<{}>; valueChange: EventEmitter; constructor(location: Location); ngOnInit(): void; onSubmit(value: any, isValid: any): void; onValueChange(event: any): void; ngOnChanges(changes: SimpleChanges): void; }