/** * Password hashing utilities */ /** * Hash a password using bcrypt */ export declare function hashPassword(password: string): Promise; /** * Verify a password against a hash */ export declare function verifyPassword(password: string, hash: string): Promise; //# sourceMappingURL=password.d.ts.map