import * as React from 'react'; interface SwitchProps extends Omit, 'type'> { label?: string; onCheckedChange?: (checked: boolean) => void; } declare const Switch: React.ForwardRefExoticComponent>; export { Switch, type SwitchProps };