import React from 'react'; import { Theme, UncompiledTheme } from './types'; export declare const withTheme:
(comp: React.ComponentType
) => React.ComponentType
;
export declare const useTheme: () => Theme;
export interface ThemeProviderProps {
theme: UncompiledTheme | Theme | ((outerTheme: Theme) => Theme);
children: React.ReactNode;
exposeCssVariables?: boolean;
useThemeCache?: boolean;
}
export declare const ThemeProvider: React.FC