export type PasswordStrength = 'TOO_WEAK' | 'WEAK' | 'MEDIUM' | 'STRONG'; export declare function getPasswordStrength(password: string): PasswordStrength;