import * as React from 'react';
import type { ThemeOptions, ThemeType } from './ThemeProvider.js';
export declare const ThemeContext: React.Context<{
    theme?: ThemeType;
    themeOptions?: ThemeOptions;
    portalContainer?: HTMLElement | null;
} | undefined>;
