/** 自定义正则验证工具集 */ export declare class RegexUtil { /** * 检查字符串是否为手机号码 * @param mobile 手机号码 */ isMobile(mobile: string): boolean; }