import { IPasswordHasher } from './IPasswordHasher'; export declare class PlainPasswordHasher implements IPasswordHasher { hash(password: string): Promise; verify(password: string, passwordHash: string): Promise; }