import React from 'react'; import { InputProps } from '../input'; export interface InputPasswordProps extends InputProps { suffix?: boolean; visibleOnClick?: () => void; children?: React.ReactNode; } declare const InputPassword: (props: InputPasswordProps) => JSX.Element; export default InputPassword;