import * as React from 'react'; import type { StrictTheme } from './types'; export interface ThemeContextType { theme: StrictTheme; } export declare const ThemeContext: React.Context;