/** * hook for getting current theme from context * that is synchronized in react * This hook is used by the NvSwitchLightDarkTheme component to provide context (theme, changeTheme). * If used without the NvLightDarkThemeProvider component it will return the default context value. * @returns {typeof LightDarkThemeContext} theme - currently selected theme from the context */ declare const useLightDarkTheme: () => import("../../constants/LightDarkTheme").LightDarkThemeContext; export { useLightDarkTheme };