import type React from 'react'; export type FreyTheme = 'light' | 'dark' | 'system'; export type ThemeProviderProps = { children: React.ReactNode; theme?: FreyTheme; highContrast?: boolean; id?: string; className?: string; style?: React.CSSProperties; }; export type ThemeContextValue = { resolvedTheme: 'light' | 'dark'; highContrast: boolean; }; export declare const ThemeContext: React.Context; export declare function useTheme(): ThemeContextValue; declare function ThemeProvider({ children, theme, highContrast, id, className, style, }: Readonly): React.JSX.Element; export default ThemeProvider; //# sourceMappingURL=index.d.ts.map