import React, { PropsWithChildren } from 'react'; import type { BaseTheme } from './theme'; export declare type ThemeContextValue = Required>; export declare const ThemeContext: React.Context>>; interface ThemeProviderProps { theme: BaseTheme; } export declare function ThemeProvider({ children, theme, }: PropsWithChildren): JSX.Element; export {}; //# sourceMappingURL=theme-context.d.ts.map