declare const ValidationCheckRules: string[]; declare type ValidationCheckRule = typeof ValidationCheckRules[number]; export interface IFormErrorInfo { concerns: string; validationLevel: ValidationCheckRule[]; } export interface IFieldValidationRule { fieldName: string; checkRules: ValidationCheckRule[]; pattern?: RegExp; } export declare const getInvalidFields: (model: object, rules: IFieldValidationRule[]) => IFormErrorInfo[]; export declare const getPatternValidationErrorMsg: (invalidFields: IFormErrorInfo[], fieldName: string) => "Validation error. Check field value" | ""; export {};