import { ColorSchemeType } from "../../types"; export interface ThemeSwitcherProps { forcedTheme?: string; forcedColorScheme?: ColorSchemeType; targetSelector?: string; themeTransition?: string; /** provide styles object imported from CSS/SCSS modules, if you are using CSS/SCSS modules. */ styles?: Record; /** The nonce value for your Content Security Policy. */ nonce?: string; } /** * * * @example * ```tsx * * ``` * * @source - Source code */ export declare const ThemeSwitcher: ({ forcedTheme, forcedColorScheme, targetSelector, themeTransition, styles, nonce, }: ThemeSwitcherProps) => import("react/jsx-runtime").JSX.Element;