import { DefaultProps } from '../../styles'; import { InputProps } from '../Input/Input'; import { InputWrapperProps } from '../InputWrapper/InputWrapper'; type BaseProps = Omit & InputWrapperProps & DefaultProps; export interface PasswordInputProps extends BaseProps { toggleTabIndex?: -1 | 0; visibilityToggleLabel?: string; visible?: boolean; defaultVisible?: boolean; onVisibilityChange?(visible: boolean): void; }