import type { ScreenMode, Theming } from './const'; interface ThemeHookValue { theme: NonNullable; screenMode: ScreenMode; /** * @deprecated there is no more such thing as "modern" theme */ isModern: boolean; isForestGreenTheme: boolean; isScreenModeDark: boolean; className: string; setTheme: (theme: NonNullable) => void; setScreenMode: (screenMode: ScreenMode) => void; } export declare const useTheme: () => ThemeHookValue; export {}; //# sourceMappingURL=useTheme.d.ts.map