/** * 校验邮箱 * @param str 邮箱 * @returns 校验邮箱 * @see {@link https://yourhhh.github.io/zztoolDocument} API 文档 * @example * // 调用示例 * regEmail('test@example.com'); // true */ export declare function regEmail(str: string): boolean;