/**
 * 校验是否是邮箱
 */
declare function isEmail(val: string): boolean;

export { isEmail };
