export declare function hashPassword(password: string): Promise; export declare function comparePassword(password: string, hash: string): Promise; export declare function validatePasswordStrength(password: string): { valid: boolean; errors: string[]; }; //# sourceMappingURL=password.d.ts.map