import React from 'react'; import { theme as defaultTheme } from './theme'; declare type ThemeProviderProps = { theme?: typeof defaultTheme; children?: React.ReactNode; }; export declare function ThemeProvider({ theme, children, }: ThemeProviderProps): JSX.Element; export {};