export declare class HashPassword {
    static encrypt(password: string): Promise<string>;
    static verify(password: string, hashedPassword: string): Promise<boolean>;
    static hash(password: string): Promise<string>;
    static validate(password: string, hashedPassword: string): Promise<boolean>;
}
