export declare class Bcryptjs { hash(password: string): Promise; compare(password: string, hash: string): Promise; } export declare const Bcrypt: Bcryptjs;