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