import React from 'react'; import type { PasswordStrength } from './usePasswordStrength'; export interface PasswordStrengthMeterProps { strength: PasswordStrength; } /** Progress bar + label shown under the new-password field on reset/create-password screens. */ export declare function PasswordStrengthMeter({ strength }: PasswordStrengthMeterProps): React.JSX.Element | null;