import { Toggle as TogglePrimitive } from '@base-ui/react/toggle'; import { ToggleGroup as ToggleGroupPrimitive } from '@base-ui/react/toggle-group'; import { toggleVariants } from '@components/common/ui/Toggle.js'; import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroupPrimitive.Props & VariantProps & { spacing?: number; orientation?: 'horizontal' | 'vertical'; }): React.JSX.Element; declare function ToggleGroupItem({ className, children, variant, size, ...props }: TogglePrimitive.Props & VariantProps): React.JSX.Element; export { ToggleGroup, ToggleGroupItem };