import { BoxProps } from '@chakra-ui/react'; import { FC } from 'react'; interface PasswordStrengthIndicatorBarContainerProps extends BoxProps { password: string; error?: string; showAlways?: boolean; } declare const PasswordStrengthIndicatorBarContainer: FC; export { PasswordStrengthIndicatorBarContainer };