import type { Theme } from "./themeHelpers"; export interface ThemeContextValue { theme: Theme; resolvedMode: "light" | "dark"; setTheme: (next: Theme) => void; toggle: () => void; } export declare const ThemeContext: import("react").Context;