import * as React from "react"; import { Switch as SwitchPrimitive } from "radix-ui"; type SwitchSize = "sm" | "default" | "lg"; declare const Switch: React.ForwardRefExoticComponent & { size?: SwitchSize; }, "ref"> & React.RefAttributes>; export { Switch };