import { Theme } from '@mui/material/styles'; /** Dark theme - the primary, Figma-accurate theme. */ export declare const darkTheme: Theme; /** Light theme - derived for completeness. */ export declare const lightTheme: Theme; /** Default export is the dark theme (dark-first design system). */ export declare const theme: Theme; export declare const themes: { readonly dark: Theme; readonly light: Theme; }; export type ThemeMode = keyof typeof themes; export { darkPalette, lightPalette, severityPalette } from './palette'; export { typography } from './typography'; export { components } from './components'; /** * Theming surface. Consuming apps get `ThemeProvider`, `CssBaseline`, `useTheme` * and the theme types from this package - there is no need to import them from * MUI directly. */ export * from './provider'; export { useTheme } from '@mui/material/styles'; export type { Theme, SxProps } from '@mui/material/styles';