import React from 'react'; import type { ThemeContextValue } from '../types'; declare const ThemeProvider: React.MemoExoticComponent<({ children, value }: { children: React.ReactNode; value: ThemeContextValue; }) => JSX.Element>; export declare const useThemeContext: () => ThemeContextValue; export default ThemeProvider;