import * as react from 'react'; import { HTMLAttributes } from 'react'; import { a as InputBaseProps } from './inputs.types-CJbAS14j.cjs'; import { C as Color } from './types-8Sv0rCjw.cjs'; interface SwitchProps extends Omit, Omit, "color" | "defaultChecked" | "onChange" | "id"> { checked?: boolean; defaultChecked?: boolean; onCheckedChange?: (checked: boolean) => void; color?: Color; label?: string; } declare const Switch: react.ForwardRefExoticComponent>; export { Switch, type SwitchProps };