/** * Returns the comma-separated list of password-strength requirements that * `pw` fails to meet (e.g. "include an uppercase letter, include a number"), * or null if the password meets every rule. * * Callers prefix their own framing — e.g. "Password too weak: must <…>.", * "Password must <…>.", "TWAK_WALLET_PASSWORD too weak: must <…>." — so each * entry point keeps its own user-visible error wording while sharing the * rule set. */ export declare function getPasswordWeaknesses(pw: string): string | null; //# sourceMappingURL=password.d.ts.map