import React from 'react'; import { TextFieldProps } from '@material-ui/core'; import { FieldProps } from './ComponentTypes'; declare type PasswordProps = FieldProps & TextFieldProps; declare const PasswordOutlined: React.FC; export default PasswordOutlined;