import { Theme } from "@mui/material"; export default function Button(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; }; }; }; }; };