import { TextFieldProps } from '@mui/material';
export type UsernameTextFieldProps = {
    /**
     * Allows the field to accept an email format as well
     */
    allowEmail?: boolean;
} & TextFieldProps;
declare const UsernameTextField: (props: UsernameTextFieldProps) => JSX.Element;
export default UsernameTextField;
