import * as React from 'react'; import { RuntimeTheme } from './theme'; export interface ThemeProviderProps { theme: RuntimeTheme; children: React.ReactNode; } export declare function ThemeProvider({ theme, children, }: ThemeProviderProps): JSX.Element; export declare function useTheme(): RuntimeTheme; //# sourceMappingURL=ThemeContext.d.ts.map