export interface DynamicThemeContext { theme: string; setTheme: (theme: string) => void; isDark: boolean; themeState: any; applyContextualColor: (color: string) => string; animateAccentColor: (color: string) => void; generateThemeGradient: (baseColor: string) => string; getOptimalTextColor: (backgroundColor: string) => string; transitionToPlatform: (platform: string) => void; } export declare function useDynamicThemeContext(): DynamicThemeContext; //# sourceMappingURL=use-dynamic-theme-context.d.ts.map