import React from 'react'; import { ThemeProps } from './ThemeProvider'; export interface ThemedComponent { displayName: string; } declare function withTheme

(WrappedComponent: React.ComponentType

>>, themeKey: string): React.FunctionComponent>> | React.ForwardRefExoticComponent

; export default withTheme;