import * as React from "react"; import { TextInputProps } from "../TextInput"; export interface PasswordInputProps extends TextInputProps { useIconVisibility?: boolean; toggleableDisplay?: boolean; } interface State { maskedInput: boolean; } /** * The PasswordInput uses the TextInput component and adds password masking */ declare class PasswordInput extends React.Component { static displayName: string; static defaultProps: { toggleableDisplay: boolean; }; state: { maskedInput: boolean; }; toggleMaskState: () => void; render(): JSX.Element; } export default PasswordInput;