import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; import { ToggleGroup as ToggleGroup$1 } from 'radix-ui'; import { toggleVariants } from './toggle.js'; import 'class-variance-authority/types'; declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: React.ComponentProps & VariantProps & { spacing?: number; orientation?: 'horizontal' | 'vertical'; }): React.JSX.Element; declare function ToggleGroupItem({ className, children, variant, size, ...props }: React.ComponentProps & VariantProps): React.JSX.Element; export { ToggleGroup, ToggleGroupItem };