/**
 * 判断是否为邮箱地址
 * @category Validate
 * @param str
 */
declare function isEmail(str: string): boolean;
export default isEmail;
