import type { PaletteOptions as MuiPaletteOptions } from "@mui/material/styles"; import type { ThemeVariant } from "./types"; interface PaletteOptions extends MuiPaletteOptions { type: ThemeVariant; contrastColor: string; headerGradient: string; brandColor: string; } declare const palette: (variant: ThemeVariant) => PaletteOptions; export default palette; //# sourceMappingURL=palette.d.ts.map