import * as React from 'react';
import * as SwitchPrimitives from '@radix-ui/react-switch';
import { R as RadiusType } from '../commonTypes-DUY2LJm1.mjs';

interface SwitchProps extends React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {
    size?: "default" | "sm" | "lg";
    label?: string;
    roundedness?: RadiusType;
}
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;

export { Switch };
