import React from "react"; import type { ThemeContextProps, ThemeMode, ThemePref, ThemeProps } from "./ThemeProvider.types"; /** Brand colors derived from the logo */ declare const brand: { readonly coal: "#201C10"; readonly coalLight: "#48443B"; readonly coalDark: "#19160C"; readonly orange: "#BA4813"; readonly orangeLight: "#CD7B55"; readonly orangeDark: "#8D360E"; readonly cream: "#F3E2B3"; readonly straw: "#DBAD58"; readonly green: "#6F8C3A"; }; /** Optional: expose brand tokens on theme for type-safe access */ declare module "@mui/material/styles" { interface Theme { brand: typeof brand; } interface ThemeOptions { brand?: typeof brand; } } declare const ThemeProvider: React.FC; declare const useThemeProvider: () => ThemeContextProps; export { brand, ThemeProvider, useThemeProvider, type ThemeMode, type ThemePref, };