import * as React from 'react'; import type { InputProps } from '../../components/input/Input'; type PasswordInputProps = Omit & { hidePasswordText?: string; showPasswordText?: string; }; export declare const PasswordInput: React.ForwardRefExoticComponent & React.RefAttributes>; export {};