declare function sha512(input: Uint8Array | string): Promise; declare function hashPassword(password: string): Promise; declare function comparePassword(password: string, hash: string): Promise; declare function isPasswordHashValid(hash: string): Promise; declare function getPasswordHashAlgorithm(hash: string): Promise<"bcrypt" | undefined>; export { comparePassword, getPasswordHashAlgorithm, hashPassword, isPasswordHashValid, sha512 };