import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group'; import React from 'react'; type ToggleGroupItemProps = { value: string; iconOnly?: boolean; size?: 'small' | 'medium'; } & React.ComponentProps; export declare const ToggleGroup: React.ForwardRefExoticComponent<(Omit & { size?: "small" | "medium"; }, "ref"> | Omit & { size?: "small" | "medium"; }, "ref">) & React.RefAttributes> & { Item: { ({ value, ...props }: ToggleGroupItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export {}; //# sourceMappingURL=ToggleGroup.d.ts.map