import { SxProps } from '@mui/material'; import { FC, ChangeEvent } from 'react'; type Props = { name: string; label?: string; placeholder?: string; value: string; error: boolean; onChange: (e: ChangeEvent) => void; variant?: 'filled' | 'outlined'; size?: 'small' | 'medium'; sx?: SxProps; disabled?: boolean; }; declare const LoginForm: FC; export default LoginForm;