/**
 * 判断是否为手机号
 * @category Validate
 * @param str
 */
declare function isPhoneNum(str: string): boolean;
export default isPhoneNum;
