// good approximation of RFC 2822
// http://www.regular-expressions.info/email.html
declare function isEmail(email: string): boolean;

declare namespace isEmail {}

export = isEmail;
