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