import { BasicInputProps } from "./BasicInput";
export declare const VuiPasswordInput: import("react").ForwardRefExoticComponent<BasicInputProps & {
    value?: string | undefined;
    onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
    maxLength?: number | undefined;
    isPasswordVisible?: boolean | undefined;
} & import("react").RefAttributes<HTMLInputElement | null>>;
