import * as react from 'react'; interface PasswordRule { label: string; test: (value: string) => boolean; } interface PasswordStrengthProps { value: string; rules?: PasswordRule[]; className?: string; } declare const DEFAULT_RULES: PasswordRule[]; declare function PasswordStrength({ value, rules, className }: PasswordStrengthProps): react.JSX.Element; export { type PasswordRule, PasswordStrength, type PasswordStrengthProps, DEFAULT_RULES as passwordRules };