/** 一套日常验证类 */ export declare class Validate { /** 是否为数字 */ static isNum(value: string | number): boolean; /** 是否为整数 */ static isInt(value: string | number): boolean; /** 是否为小数 */ static isDecimal(value: string | number): boolean; /** 是否为身份证 */ static isIdCard(value: any): boolean; /** 是否为手机号 */ static isMobile(value: any): boolean; }