import { BaseInputProps } from '../../types/input'; import { AriaAttributes, ChangeEvent } from 'react'; export interface InputPasswordButton { ariaLabelHide?: AriaAttributes['aria-label']; ariaLabelShow?: AriaAttributes['aria-label']; } export interface InputPasswordProps extends Omit { /** Optional props for the button */ feButton?: InputPasswordButton; /** If true, hides the button that shows the password in plain-text */ feHideButton?: boolean; /** Callback that will fire anytime the value of the input changes. */ onChange?: (event: ChangeEvent, value: string) => void; } declare const InputPassword: import("react").ForwardRefExoticComponent>; export default InputPassword;