import type { ComponentPropsWithoutRef } from 'react'; type SwitchProps = Omit, 'checked' | 'defaultChecked' | 'onChange' | 'type'> & { checked: boolean; label?: string; labelPosition?: 'left' | 'right' | 'top' | 'bottom'; onCheckedChange: (checked: boolean) => void; }; declare function Switch({ checked, className, disabled, id, label, labelPosition, onCheckedChange, ...props }: SwitchProps): import("react/jsx-runtime").JSX.Element; export type { SwitchProps }; export default Switch;