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