import type { CSSProperties } from 'react'; type Strength = { /** * Color to display */ color: string; /** * Text to display */ text: string; }; type PasswordStrengthMeterProps = { /** * Strength is used for defining different color and text associated with it. */ strength: Strength[]; title: string; value: number; className?: string; 'data-testid'?: string; id?: string; style?: CSSProperties; }; export declare function Meter({ strength, title, value, className, 'data-testid': dataTestId, style, id, }: PasswordStrengthMeterProps): import("react").JSX.Element; export declare namespace Meter { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map