import 'normalize.css';
import React, { FC } from 'react';
import { Theme } from '../../../types/emotion/Theme';
import { baseTheme } from '../../../utils/emotion/baseTheme';
export interface ThemeProviderProps {
    /** Theme object. */
    theme: Theme | typeof baseTheme;
    /** Project code with access to provided theme. */
    children: React.ReactNode;
}
/**
 * Component for providing theme context for app.
 */
export declare const ThemeProvider: FC<ThemeProviderProps>;
