import { type Theme as MuiTheme } from '@mui/material/styles'; import { type Elevation, type Palette, type Shape } from '../theme'; import { type TypographyThemeOptions } from '../theme/typography'; declare module '@mui/material/styles' { export interface Theme extends Omit { elevation: Elevation; palette: Palette; shape: Shape; typography: TypographyThemeOptions; } }