import type { Hasher } from './Hasher.js'; /** * bcrypt-based password hasher (pure JS via `bcryptjs`). */ export declare class BcryptHasher implements Hasher { private readonly rounds; /** * @param rounds - bcrypt cost factor. */ constructor(rounds: number); /** * @inheritdoc */ make(value: string): Promise; /** * @inheritdoc */ check(value: string, hashedValue: string): Promise; /** * @inheritdoc */ needsRehash(hashedValue: string): boolean; } //# sourceMappingURL=BcryptHasher.d.ts.map