import * as React from "react"; interface DynamicThemeContextType { theme: any; isDark: boolean; updateTheme: (theme: any) => void; toggleDark: () => void; } export declare function DynamicThemeProvider({ children }: { children: React.ReactNode; }): React.JSX.Element; export declare function useDynamicTheme(): DynamicThemeContextType; export {}; //# sourceMappingURL=dynamic-theme-provider.d.ts.map