import { TextFieldProps } from '@mui/material/TextField';
import { default as React } from 'react';
export type PasswordInputProps = Omit<TextFieldProps, "variant" | "type">;
declare const PasswordInput: React.FunctionComponent<PasswordInputProps>;
export default PasswordInput;
