/// import { CompleteThemeSettings, ThemeConfig } from '../../../types'; export declare const ThemeContext: import("react").Context<{ themeSettings: CompleteThemeSettings; config?: ThemeConfig | undefined; }>; /** * Hook to get the current theme settings. * * @returns The current theme settings * * @sisenseInternal */ export declare const useThemeContext: () => { themeSettings: CompleteThemeSettings; config?: ThemeConfig | undefined; };