/// <reference types="react" />
import type { IThemeService } from '../services/theme/registerTheme';
export interface IThemeContext {
    themeService?: IThemeService;
}
export declare const ThemeContext: import("react").Context<IThemeContext>;
export declare const ThemeProvider: import("react").Provider<IThemeContext>, ThemeConsumer: import("react").Consumer<IThemeContext>;
