import type { ReactNode } from 'react'; export type ThemeContextType = { theme: string; updateTheme: (theme: string) => void; }; export type ThemeProviderProps = { theme?: string; children?: ReactNode; };