import * as react from 'react';
import { HTMLAttributes } from 'react';
import { a as InputBaseProps } from './inputs.types-vl3PAc4q.js';
import { C as Color } from './types-8Sv0rCjw.js';
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 };