/** * Compare a plain text password and a hash to see if they match. * * @deprecated Use `PasswordService.verifyPassword()` instead. * @export * @param {string} plainTextPassword - The password in clear text. * @param {string} passwordHash - The password hash generated by the `hashPassword` function. * @returns {Promise} True if the hash and the password match. False otherwise. */ export declare function verifyPassword(plainTextPassword: string, passwordHash: string): Promise;