/** * Validate if an email appears to work with providers like Amazon SES. Works offline. * * @example * ```javascript * emailSeemsValid('test@gmail.com') * // true * emailSeemsValid('test@gmai.com) * // false * ``` */ export declare function emailSeemsValid(emailAddress: string): boolean;