import * as SwitchPrimitives from "@radix-ui/react-switch"; import React, { ComponentPropsWithoutRef } from "react"; import { VariantProps } from "tailwind-variants"; export type SwitchProps = Pick, "aria-label" | "checked" | "onCheckedChange" | "disabled" | "id" | "name" | "className"> & VariantProps & { size?: "sm" | "md"; }; declare const switchVariants: import("tailwind-variants").TVReturnType<{ checked: { false: string; true: string; }; size: { sm: string; md: string; }; }, undefined, "inline-flex shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-hidden", { checked: { false: string; true: string; }; size: { sm: string; md: string; }; }, undefined, import("tailwind-variants").TVReturnType<{ checked: { false: string; true: string; }; size: { sm: string; md: string; }; }, undefined, "inline-flex shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-hidden", unknown, unknown, undefined>>; export declare const Switch: React.ForwardRefExoticComponent, "ref">, "className" | "id" | "name" | "aria-label" | "disabled" | "checked" | "onCheckedChange"> & VariantProps>> & { size?: "sm" | "md"; } & React.RefAttributes>; export {}; //# sourceMappingURL=Switch.d.ts.map