import type { FC } from 'react'; export interface SwitchProps { /** Indicates if the switch is on */ checked: boolean; /** overwrite className */ className?: string; /** Disables the switch if true */ disabled?: boolean; /** Optional label displayed next to the switch */ label?: string; /** Callback fired when the switch state changes */ onChange: (checked: boolean) => void; } declare const Switch: FC; export default Switch;