import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group'; import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { toggleVariants } from './toggle'; declare function ToggleGroup({ className, variant, size, children, ...props }: React.ComponentProps & VariantProps): 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 };