export declare const EMAIL: RegExp; export declare const URL: RegExp; export declare const CC: RegExp; export declare const URL_SAFE: RegExp; export declare const MOBILE_LOOSE: RegExp; export declare const MOBILE_STRICT: RegExp; /** * 中华人民共和国,居民身份证号 */ export declare const PRC_CITIZEN_ID: RegExp; /** * 只包含数字的字符验证正则 */ export declare const INTEGER: RegExp; /** * 只有数字 */ export declare const DIGIT: RegExp; /** * 数字 */ export declare const NUMBER: RegExp; /** * 只有 大小写字母 */ export declare const ALPHA: RegExp; /** * 只包含 a-z 小写字母 */ export declare const LOWER_CASE: RegExp; /** * 只包含 A-Z 大写字母 */ export declare const UPPER_CASE: RegExp; /** * 只包含数字和字母的字符验证正则 */ export declare const NUMBER_ALPHA: RegExp; /** * 只有大小写字母+数字以及中文字符 */ export declare const CHARACTER: RegExp; /** * 货币数字验证 */ export declare const CURRENCY: RegExp; export declare const TIME: RegExp; export declare const FULLTIME: RegExp; export declare const TIME_OR_FULLTIME: RegExp; export declare const DATE: RegExp; export declare const HEX: RegExp; export declare const HEXA: RegExp; export declare const HEX_OR_HEXA: RegExp; export declare const RGB: RegExp; export declare const RGBA: RegExp; //# sourceMappingURL=patterns.d.ts.map