import React from "react"; import { MedosTheme, PartialTheme } from "../core/theme/types"; import { ThemeName } from "../core/theme/themes"; interface ThemeContextValue { theme: MedosTheme; cssVars: Record; prefix: string; } export interface MedosThemeProviderProps { children: React.ReactNode; theme?: ThemeName | MedosTheme | PartialTheme; cssVariablePrefix?: string; onThemeError?: (error: Error) => void; } export declare function MedosThemeProvider({ children, theme, cssVariablePrefix, onThemeError, }: Readonly): import("react/jsx-runtime").JSX.Element; export declare function useThemeContext(): ThemeContextValue; export declare function useTheme(): MedosTheme; export declare function useCssVar(category: string, key: string, fallback?: string): string; export {};