import type { ColorScheme } from '../utils/color-scheme.constants'; import type { ThemeId } from './useTheme'; export type { ColorScheme, ThemeId }; export interface UseGetActiveThemeResult { theme: ThemeId | null; colorScheme: ColorScheme | null; themeKey: string | null; } export declare function useGetActiveTheme(): UseGetActiveThemeResult;