/**
 * Helper function that checks if string is an email and it is valid
 * @param str
 * @returns boolean true if valid email
 */
export declare const isValidEmail: (str: string) => boolean;
