import { type FormFieldValidator } from '../types'; export declare const fieldRequiredErrCode = "field.required"; export declare const fieldOutOfBoundErrCode = "field.outOfBound"; export declare const FieldValidator: FormFieldValidator; export declare function numberInputRangeValidator(min: number, max: number, inputValue: number): any[] | [{}]; export declare function isEmpty(value: any): boolean; export declare function textInputLengthValidator(minLength: string, maxLength: string, inputLength: number): any[] | [{}]; export declare function addError(errorCode: string, message: string): [{}]; //# sourceMappingURL=form-validator.d.ts.map