export interface IPasswordHasher { hash(plain: string): Promise; check(hash: string, plain: string): Promise; } //# sourceMappingURL=IPasswordHasher.d.ts.map