import * as React from 'react'; export interface Props { children?: any; theme: string; } declare class ThemeProvider extends React.Component { static propTypes: Object; static displayName: string; static defaultProps: { theme: string; }; static childContextTypes: { theme: () => void; }; getChildContext: () => { theme: string; }; render(): any; } export default ThemeProvider;