/** * The password input element * * @author Platon Fedorov * @date 2020-11-27 */ import * as React from 'react'; import { Props } from './Input.types'; declare type IState = { suffix: string; type: string; }; export declare class InputPassword extends React.Component { state: { suffix: string; type: string; }; toggleClick: () => void; render(): JSX.Element; } export {};