/**
* Helper function that checks ifstringis an email and it is valid
* The default validation functionfor email fields if none is provided
* @param str the email stringto validate
* @returns booleantrueif valid email
*/
export declarefunction validateEmail(str: string): boolean;