/// interface IProps { label: string; placeholder: string; name: string; value: string; onChange: any; error: string; } export default function PasswordInput(props: IProps): JSX.Element; export {};