import React from 'react'; import { ThemeContext } from '@emotion/react'; import { theme } from '../../theme'; import { UserTheme } from '../../../utils/generateTheme'; export interface ThemeProviderProps { theme: Partial | ((outerTheme: UserTheme) => UserTheme); children?: React.ReactNode; } declare const ThemeProvider: React.FC; export { ThemeProvider, ThemeContext, theme }; export declare type ThemeProps = typeof theme;