import type { ReactNode } from 'react'; export type StableThemeSwitcherProps = { children?: ReactNode; defaultTheme?: string; }; export declare function StableThemeSwitcher({ children, defaultTheme }: StableThemeSwitcherProps): import("react/jsx-runtime").JSX.Element;