/** * Whether a string is considered valid email address * * Regex pattern is from HTML's spec for validating email in input type='email' * https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address */ export declare function isValidEmail(email: string): boolean; //# sourceMappingURL=index.d.ts.map