import { OnInit } from '@angular/core'; import { FormArray } from '@angular/forms'; import { FieldType, FormlyFormBuilder } from 'ng-formly'; export declare class FormlyRepeatedSectionComponent extends FieldType implements OnInit { private builder; formControl: FormArray; _fields: any[]; sectionsNumber: number; constructor(builder: FormlyFormBuilder); readonly newFields: any; ngOnInit(): void; add(): void; remove(i: any): void; fields(i: any): any; }