import { FC } from "react"; interface NvSwitchLightDarkThemeProps { showValue?: boolean; } /** * This component is used for switch the theme from Light to Dark and vice versa. * It works correctly if all components (including this one) that need to use dark mode are wrapped in an NvLightDarkThemeProvider component. * * @param {LightDarkTheme} theme - The current value of theme, can be `light` or `dark`. * @param changeTheme - Function to change the value of theme from the context. * @param {string} className - Additional CSS class names. * @returns The NvSwitch сomponent for changing the theme by the user. */ declare const NvSwitchLightDarkTheme: FC; export default NvSwitchLightDarkTheme;