export default function Input(theme: any): { MuiInputBase: { styleOverrides: { root: { '&.Mui-disabled': { '& svg': { color: any; }; }; }; input: { '&::placeholder': { opacity: number; color: any; }; }; }; }; MuiInput: { styleOverrides: { underline: { '&:before': { borderBottomColor: string; }; }; }; }; MuiFilledInput: { styleOverrides: { root: { backgroundColor: string; '&:hover': { backgroundColor: string; }; '&.Mui-focused': { backgroundColor: any; }; '&.Mui-disabled': { backgroundColor: any; }; }; underline: { '&:before': { borderBottomColor: string; }; }; }; }; MuiOutlinedInput: { styleOverrides: { root: { '& .MuiOutlinedInput-notchedOutline': { borderColor: string; }; '&.Mui-disabled': { '& .MuiOutlinedInput-notchedOutline': { borderColor: any; }; }; }; }; }; };