import React, { ReactNode } from 'react'; import { AVOCADO_LIGHT_THEME, AVOCADO_DARK_THEME } from '../../constants/theme.constants'; import { Theme } from '../../types/theme.types'; type ThemeContextType = { theme: Theme; }; declare const ThemeContext: React.Context; type ThemeProviderProps = { children: ReactNode; theme?: Theme; }; declare const ThemeProvider: React.FC; export { ThemeContext, ThemeProvider, AVOCADO_LIGHT_THEME, AVOCADO_DARK_THEME };