declare function hashPassword(password: string): Promise; declare function verifyPassword(password: string, passwordHash: string): Promise; export { hashPassword, verifyPassword };