import { SwitchProps as RadixSwitchProps } from '@radix-ui/react-switch'; interface SwitchProps extends Omit { /** * The checked state of the switch. * @default false */ checked?: boolean; /** * Callback function that is triggered when the checked state changes. */ onChange?: (checked: boolean) => void; /** * Disables the switch when set to true. * @default false */ disabled?: boolean; } declare const Switch: import('react').ForwardRefExoticComponent>; export { Switch }; export type { SwitchProps };