import { FormGroup } from '@angular/forms'; export declare function validateAllFormFields(formGroup: FormGroup): void; export declare const EMAIL = "email"; export declare const INTEGER = "integer"; export declare const DECIMAL = "decimal"; export declare const POSITIVE_INTEGER = "positive_integer"; export declare const POSITIVE_DECIMAL = "positive_decimal"; export declare const REQUIRED = "required"; export declare type CUI_VALIDATION = 'integer' | 'decimal' | 'positive_integer' | 'positive_decimal' | 'required' | 'email'; export declare const VALIDATIONS: { [name: string]: { validation: any; message: string; }; };