declare const isIdCard: (value: string) => boolean; declare const isEmail: (value: string) => boolean; declare const isPhone: (value: string) => boolean; export declare const isMobile: (value: string) => boolean; declare const isSendNumber: (value: string) => boolean; declare const isAccount: (value: string) => boolean; declare const isUserAccount: (value: string) => boolean; declare const isCardNo: (num: any) => boolean; declare const codeReg: (value: any) => boolean; declare const regexPassword: (value: any, min?: number, max?: number) => boolean; declare const isPostalCode: (value: any) => boolean; declare const isBandCard: (value: any) => boolean; declare const spaceReg: (value: any) => boolean; /** * 校验中国普通护照号码(常见格式:E或G后跟8位数字) * @param {string} value - 护照号码 * @returns {boolean} - 是否符合格式要求 */ export declare const isPassport: (value: any) => boolean; /** * 校验港澳通行证(港澳居民来往内地通行证,回乡证) * @param {string} value - 港澳通行证号码 * @returns {boolean} - 是否符合格式要求 */ export declare const isHKMacauPermit: (value: any) => boolean; /** * 校验台胞证(台湾居民来往大陆通行证) * 支持旧版(8位数字)和新版(T + 17位数字) * @param {string} value - 台胞证号码 * @returns {boolean} - 是否符合格式要求 */ export declare const isTaiwanPermit: (value: any) => boolean; export { isCardNo, isIdCard, isEmail, isPhone, isSendNumber, isAccount, isUserAccount, codeReg, regexPassword, isPostalCode, isBandCard, spaceReg };