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