import { Theme } from "@mui/material"; export default function ComponentsOverrides(theme: Theme): { MuiButton: { styleOverrides: { root: { boxShadow: string; "&:hover": { boxShadow: string; }; padding: string; borderRadius: string; }; sizeMedium: { height: number; fontSize: number; }; sizeLarge: { height: number; fontSize: number; }; containedInherit: { color: string; "&:hover": { backgroundColor: string; }; }; containedPrimary: {}; containedSecondary: {}; containedInfo: {}; containedSuccess: {}; containedWarning: {}; containedError: {}; outlinedInherit: { border: string; "&:hover": { backgroundColor: string; }; }; textInherit: { "&:hover": { backgroundColor: string; }; }; }; }; } & { MuiCard: { styleOverrides: { root: { boxShadow: any; borderRadius: any; position: string; zIndex: number; }; }; }; MuiCardHeader: { defaultProps: { titleTypographyProps: { variant: string; }; subheaderTypographyProps: { variant: string; marginTop: string; }; }; styleOverrides: { root: { padding: string; }; }; }; MuiCardContent: { styleOverrides: { root: { padding: string; }; }; }; };