/** * Check if input string is a valid email address * @param str * @returns boolean value, true if input is a valid email address, false otherwise. */ export declare const isEmail: (str: string) => boolean;