import * as React from "react"; import { InputDecorator } from "./decorator"; export type PasswordInputProps = Omit, "type" | "value" | "onChange"> & { value?: string | null; onChange?: React.ChangeEventHandler; onValueChange?: (value: string) => void; visible?: boolean; defaultVisible?: boolean; onVisibleChange?: (visible: boolean) => void; showToggle?: boolean; showCapsLockWarning?: boolean; capsLockLabel?: string; wrapperClassName?: string; inputClassName?: string; showLabel?: string; hideLabel?: string; }; declare const PasswordInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { PasswordInput };