export declare const emailRegex: RegExp; export declare const phoneRegex: RegExp; export declare const validateEmpty: (value?: string | number, message?: string) => string; export declare const validateMinLength: (value: string, minLength: number, fieldName?: string) => string; export declare const validateEmail: (email: string, equalTo?: string) => string; export declare const validatePasswords: (password?: string, equalTo?: string) => string; export declare const validateAge: (dateOfBirth?: Date, minimumAge?: number) => string; interface IValidatePhoneNumber { phoneNumber?: string; customError?: string; countryCode?: string; } export declare const validatePhoneNumber: ({ phoneNumber, customError, countryCode, }: IValidatePhoneNumber) => string; export declare const validateDropDownEmpty: (selectedOptionId?: string | number) => string; export {}; //# sourceMappingURL=Validators.d.ts.map