export type PasswordStrength = 'weak' | 'medium' | 'strong' | null; /** Length-based password strength heuristic shared by every reset/create-password screen. */ export declare function usePasswordStrength(password: string): PasswordStrength;