export { Shadows } from '@mui/material/styles/shadows';

declare module "@mui/material/styles/createPalette" {
  interface Palette {
    default?: PaletteColor;
  }
  interface PaletteOptions {
    default?: PaletteColorOptions;
  }
  interface PaletteColor {
    alternative?: string;
  }
  interface SimplePaletteColorOptions {
    alternative?: string;
  }
}
