import { Component } from 'react'; import { IPasswordInputProps } from './PasswordInputProps'; /** * A password field with show/hide password toggle. * All properties of DropInput apply. */ declare class PasswordInput extends Component { static defaultProps: { viewIcon: JSX.Element; hideIcon: JSX.Element; a11yViewPassword: string; a11yHidePassword: string; }; state: { showPassword: boolean; }; toggleView: (e: any) => void; render(): JSX.Element; } export { PasswordInput };