import * as React from 'react'; import { InputProps, InputRef } from './Input'; export interface InputPasswordProps extends Omit { passwordVisible?: boolean; onVisibleChange?: (visible: boolean) => void; } export type TypeInput = 'text' | 'email' | 'password' | 'number'; export declare const InputPassword: React.ForwardRefExoticComponent>>;