import React from 'react'; import { InputProps } from "./input"; interface PasswordProps extends InputProps { hideToggle?: boolean; } declare type NativeAttrs = Omit, keyof PasswordProps>; export declare type InputPasswordProps = PasswordProps & NativeAttrs; declare const InputPassword: React.ForwardRefExoticComponent>; export default InputPassword;