import { type FC, type ReactNode } from 'react'; import { type CreatedTheme } from '../themes'; export type Theme = CreatedTheme; export declare const ThemeContext: import("react").Context; export declare const useTheme: () => CreatedTheme; type ThemeProviderProps = { theme: CreatedTheme; children?: ReactNode; }; export declare const ThemeProvider: FC; export {};