import * as react from 'react'; interface ThemeSwitcherProps { theme: string; onToggle: () => void; } declare function ThemeSwitcher({ theme, onToggle }: ThemeSwitcherProps): react.JSX.Element; export { ThemeSwitcher, type ThemeSwitcherProps };