declare function isBcryptHash(str: string): boolean; declare function encryptPassword(password: string): Promise; declare function compareBcrypt(password: string, hash: string): Promise; export { compareBcrypt, encryptPassword, isBcryptHash };