import type { ComponentPropsWithoutRef } from 'react'; type ThemeSwitchSize = 'sm' | 'md' | 'lg'; type ThemeSwitchProps = Omit, 'onChange'> & { checked: boolean; disabled?: boolean; onCheckedChange: (isDark: boolean) => void; size?: ThemeSwitchSize; }; declare function ThemeSwitch({ checked, className, disabled, onCheckedChange, size, ...props }: ThemeSwitchProps): import("react/jsx-runtime").JSX.Element; export type { ThemeSwitchProps, ThemeSwitchSize }; export default ThemeSwitch;