/// <reference types="react" />
import { Input } from './input.js';
import { InferComponentProps } from './types.js';
type PasswordInputProps = {
    isPasswordShown?: boolean;
    passwordStrengthScore: number;
    requiredPasswordScore: number;
} & Omit<InferComponentProps<typeof Input>, 'childrenBeforeErrors'>;
export declare const PasswordInput: import("styled-components").StyledComponent<({ isPasswordShown, passwordStrengthScore, requiredPasswordScore, className, ...props }: PasswordInputProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
export {};
