import { type SwitchProps } from "@headlessui/react"; import { type VariantProps } from "class-variance-authority"; declare const switchVariants: (props?: ({ size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type SwitchComponentProps = SwitchProps & VariantProps; export declare function Switch({ size, ...props }: SwitchComponentProps): import("react/jsx-runtime").JSX.Element; export {};