import type { ReactNode } from 'react'; import { type ThemeConfig } from '../../hooks/use-dynamic-theming'; interface DynamicThemeContextType { theme: ThemeConfig; isDark: boolean; updateTheme: (theme: Partial) => void; toggleDark: () => void; } export declare function DynamicThemeProvider({ children }: { children: ReactNode; }): import("react").JSX.Element; export declare function useDynamicTheme(): DynamicThemeContextType; export {}; //# sourceMappingURL=dynamic-theme-provider.d.ts.map