import React from "react"; import type { Theme as MuiTheme } from "@mui/material/styles"; import type { ClutchColors } from "../Theme/types"; declare module "@mui/material/styles" { interface Theme { colors: ClutchColors; } interface ThemeOptions { colors?: ClutchColors; } interface Palette { contrastColor: string; headerGradient: string; brandColor: string; } } declare const useTheme: () => MuiTheme; interface ThemeProps { useWorkflowLayout?: boolean; } declare const Theme: React.FC; export { Theme, useTheme }; //# sourceMappingURL=themes.d.ts.map