import * as React from "react"; import { type VariantProps } from "class-variance-authority"; import { ToggleGroup as ToggleGroupPrimitive } from "radix-ui"; import { toggleVariants } from "src/shadcn/components/toggle"; declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: React.ComponentProps & VariantProps & { spacing?: number; orientation?: "horizontal" | "vertical"; }): 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 };