import { IPasswordHashService } from './interfaces/password-hash-service.interface';
export declare class PasswordHashService implements IPasswordHashService {
constructor();
hashPassword(password: string): Promise<string>;
verify(password: string, hash: string): Promise<boolean>;
}