type regexTypes = "NUMBERS" | "PHONE" | "EMAIL" | "DECIMALS" | "COUNTRY_CODE" | "PASSWORD";
declare const REGEX: Record<regexTypes, {
    pattern: RegExp;
    message?: string;
}>;

export { REGEX };
