/// import { Theme, ThemeColor } from "../types"; export declare type ThemeContextContent = { theme: Theme; color: ThemeColor; }; export declare type ThemeContextType> = ThemeContextContent & T; export declare const ThemeContext: import("react").Context;