import { Theme } from '../models/theme'; import { PaletteColor } from '@mui/material/styles'; interface Color { main: string; light: string; dark: string; } interface ColorPartial { main: string; background: string; hover: string; } declare module '@mui/material/styles' { interface Palette { neutral: Color; status: { error: ColorPartial; warning: ColorPartial; info: ColorPartial; success: ColorPartial; }; typography: PaletteColor; highlight: Color; border: Color; custom: any; } } export declare const colorMode: (mode: Theme.Mode, dark: string, light: string) => string; export declare function getColorTokens(mode: Theme.Mode): Theme.Colors; export {}; //# sourceMappingURL=colors.d.ts.map