/**
 * Verifies a password strength
 * @param {string} newPassword The new password needed to be verified
 * @returns {boolean} True if the password is strong
 * @rules :
 * - Must be at least 8 characters long.
 * - Must include at least one uppercase character.
 * - Must include at least one lowercase character.
 * - Must include at least one number.
 */
export declare function isStrongPassword(newPassword: string): boolean;
