import React from 'react';
interface Props {
    password: string;
    radius?: number;
    height?: number;
    showStrenghtText?: boolean;
    unfilledColor?: string;
}
declare const PasswordStrengthMeterBar: React.FC<Props>;
export default PasswordStrengthMeterBar;
