/// import type { PasswordDictionary } from '../../utils/constants'; import type { PopoverProps } from '../Popover'; import { StrengthIndicator } from './StrengthIndicator'; export type PasswordStrengthProps = { password: string; minLength?: number; unsafeList: string[]; onChangeStrength?: (strength: keyof typeof PasswordDictionary) => void; } & Omit; type ObjProps = { Indicator: typeof StrengthIndicator; }; export declare const PasswordStrength: import("react").ForwardRefExoticComponent<{ [index: `data-${string}`]: unknown; as?: any; css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined; className?: string | undefined; children?: import("react").ReactNode; } & { password: string; minLength?: number | undefined; unsafeList: string[]; onChangeStrength?: ((strength: keyof typeof PasswordDictionary) => void) | undefined; } & Omit & import("react").RefAttributes> & ObjProps; export {};