import { ThemeParams } from '../types/telegram-webapp'; export type ThemeContext = ReturnType; export type Theme = { themeParams: ThemeParams; colorScheme: typeof window.Telegram.WebApp.colorScheme; headerColor: string; backgroundColor: string; }; export declare function createThemeContext(): { theme: import("solid-js").Accessor; setHeaderColor: (color: "bg_color" | "secondary_bg_color") => void; setBackgroundColor: (color: `#${string}` | "bg_color" | "secondary_bg_color") => void; };