import { ForwardRefExoticComponent, RefAttributes, ComponentRef } from 'react'; import { Switch as SwitchPrimitive } from '@base-ui/react/switch'; type SwitchProps = Omit & { label?: string; textLeft?: boolean; textRight?: boolean; checkedText?: string; uncheckedText?: string; }; declare const Switch: ForwardRefExoticComponent & RefAttributes>>; export { Switch };