import { FormGroup, ValidatorFn } from '@angular/forms'; import { EvkRowFormModel } from '../../models/evk-row-form.model'; import { FieldBaseModel } from '../../models/field-base.model'; export declare class EvkFormBuilderService { readonlyForm: boolean; constructor(); buildFormGroup(fields: EvkRowFormModel[]): FormGroup; getValidators(element: FieldBaseModel): ValidatorFn | ValidatorFn[]; }