export declare const Regs: { isEmail: (val: string) => boolean; isPhone: (val: string) => boolean; hasLetterAndNumber: (val: string) => boolean; hasUpperAndLowerLetter: (val: string) => boolean; hasSpecialtyString: (val: string) => boolean; }; export declare const validatePassword: (password: string) => boolean; /** 各条密码规则的校验函数,key 与 PasswordPopover 中规则 key 对应 */ export declare const PwdValidators: Record boolean>;