export interface IPasswordHasher { hash(password: string): Promise; verify(password: string, passwordHash: string): Promise; }