import React from 'react'; import { ThemeInterface } from './types'; import * as PropTypes from 'prop-types'; export interface ThemeProviderProps { theme?: ThemeInterface; } export declare class ThemeProvider extends React.Component> { static childContextTypes: { theme: PropTypes.Requireable; }; static defaultProps: { theme: ThemeInterface; }; constructor(props: any, context: any); getChildContext(): { theme: ThemeInterface; }; render(): React.ReactNode; }