export declare const PASSWORD_STRENGTH: { readonly short: "short"; readonly bad: "bad"; readonly good: "good"; readonly strong: "strong"; }; export type PasswordStrength = (typeof PASSWORD_STRENGTH)[keyof typeof PASSWORD_STRENGTH]; export declare function getPasswordStrength(password: string, username?: string): PasswordStrength;