import React from 'react'; import { Theme } from '../themeBase'; export type ThemeProviderProps = { children: React.ReactNode; theme: Theme; }; declare const ThemeProvider: ({ children, theme }: ThemeProviderProps) => React.JSX.Element; export default ThemeProvider;