/**
* Checks if the passed value is a valid email
*
* @param {string} email the value to check
* @return {boolean} If the passed value is a valid email true otherwise false
* @example isValidEmail('seryoga@spfx-app.dev') // ==> returns true
* @example isValidEmail('spfx-app.dev') // ==> returns false
* @since 1.1.0
*/
export default function isValidEmail(email: string): boolean;
//# sourceMappingURL=isValidEmail.d.ts.map