import type { PaletteColor } from '@mui/material/styles'; interface ICustomColor { main?: string; 16?: string; 15?: string; 14?: string; 13?: string; 12?: string; 11?: string; 10?: string; 9?: string; 8?: string; 7?: string; 6?: string; 5?: string; 4?: string; 3?: string; 2?: string; 1?: string; } declare module '@mui/material' { interface Color extends ICustomColor { } } interface IPalette { default: PaletteColor; inherit: PaletteColor; } declare module '@mui/material/styles' { interface PaletteColor extends ICustomColor { } interface SimplePaletteColorOptions extends ICustomColor { } interface TypeText extends ICustomColor { } interface Palette extends IPalette { } interface PaletteOptions extends IPalette { } interface TypeBackground { main: string; default: string; paper: string; 1?: string; 2?: string; 3?: string; 4?: string; } interface PaletteColor { main: string; } interface SimplePaletteColorOptions { main: string; } } export {};