///
import type { PasswordStrength } from '../../utils/types';
export type StrengthIndicatorIndicatorProps = {
strength: PasswordStrength;
};
export declare const StrengthIndicator: import("react").ForwardRefExoticComponent<{
[index: `data-${string}`]: unknown;
as?: any;
css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined;
className?: string | undefined;
children?: import("react").ReactNode;
} & StrengthIndicatorIndicatorProps & import("react").RefAttributes>;