import * as react from 'react'; import { Theme } from '../tokens/generated/styledSystemConstants.js'; interface ThemeContextType { theme: Theme; setTheme: (newTheme: Theme) => void; } declare const ThemeContext: react.Context; declare function useThemeContext(): ThemeContextType; export { ThemeContext, type ThemeContextType, useThemeContext };