import React from 'react';
import { Theme } from '../theme';
export declare const ThemeContext: React.Context<Theme>;
declare const ThemeProvider: React.FC<{
    theme?: Theme;
    children: any;
}>;
export { ThemeProvider };
