/// <reference types="react" />
import type { ThemeValue } from '../types';
interface ThemeSwitcherProps {
    value: ThemeValue;
    onChange?: (newValue: ThemeValue) => void;
}
declare const _default: ({ value, onChange }: ThemeSwitcherProps) => JSX.Element;
export default _default;
