import { default as React } from 'react'; interface PasswordFieldProps { label?: string; value: string; onChange: (event: React.ChangeEvent) => void; error?: boolean; helperText?: string; fullWidth?: boolean; required?: boolean; onBlur?: (event: React.FocusEvent) => void; autoComplete?: string; [key: string]: any; } declare const PasswordField: React.FC; export default PasswordField;