import * as React from 'react'; import type { Theme } from './types'; export declare const ThemeContext: React.Context; export type ThemeProviderProps = { theme: Theme; }; declare const ThemeProvider: React.FC>; export default ThemeProvider;