import * as React from 'react'; export type PasswordPurpose = 'current' | 'new'; export type InputPasswordProps = Omit, 'type'> & { ref?: React.Ref; passwordPurpose?: PasswordPurpose; visibilityToggle?: boolean; showLabel?: string; hideLabel?: string; }; declare function InputPassword({ ref, passwordPurpose, visibilityToggle, showLabel, hideLabel, autoComplete, autoCapitalize, autoCorrect, disabled, className, ...props }: InputPasswordProps): import("react/jsx-runtime").JSX.Element; export { InputPassword };