import { VariantProps } from 'class-variance-authority'; import { ToggleGroup as ToggleGroupPrimitive } from 'radix-ui'; import { toggleVariants } from './toggle.js'; import * as React from "react"; 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 }; //# sourceMappingURL=toggle-group.d.ts.map