import { EventEmitter, OnInit } from '@angular/core'; import { FormArray, FormGroup } from '@angular/forms'; import { ButtonComponentConfig } from '../button/button.model'; import { LabelComponentConfig } from '../label/label.model'; import { FormListComponentConfig } from './form-list.model'; import * as i0 from "@angular/core"; export declare class FormListComponent implements OnInit { config: FormListComponentConfig; onConfirm: EventEmitter; onAddElements: EventEmitter; onFormArrayCreation: EventEmitter; confirmLabel: LabelComponentConfig; confirmButton: ButtonComponentConfig; addElementsButton: ButtonComponentConfig; removeElementsButton: ButtonComponentConfig; formArray: FormArray; constructor(); ngOnInit(): void; addForm(event: FormGroup): void; confirm(): void; addElements(): void; removeElement(index: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }