import * as React from "react"; import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"; import { type VariantProps } from "class-variance-authority"; import { toggleVariants } from "./toggle"; declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React.ComponentProps & VariantProps & { spacing?: number; }): import("react/jsx-runtime").JSX.Element; declare function ToggleGroupItem({ className, children, variant, size, ...props }: React.ComponentProps & VariantProps): import("react/jsx-runtime").JSX.Element; export { ToggleGroup, ToggleGroupItem };