/** * Theme context for window manager */ import { ReactNode } from 'react'; import { Theme } from '../types'; interface ThemeProviderProps { theme?: Theme; children: ReactNode; } /** * Theme provider for window manager components * @param theme - Custom theme configuration (optional) * @param children - Child components */ export declare function ThemeProvider({ theme, children }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element; /** * Hook to access current theme * @returns Current theme configuration */ export declare function useTheme(): Theme; export {}; //# sourceMappingURL=ThemeContext.d.ts.map