import * as react from 'react'; import { HTMLAttributes } from 'react'; type ButtonGroupSize = 'sm' | 'md' | 'lg'; type ButtonGroupOrientation = 'horizontal' | 'vertical'; interface ButtonGroupProps extends HTMLAttributes { /** Default size applied to child buttons that omit `size` */ size?: ButtonGroupSize; /** Layout direction — horizontal fuses left-to-right, vertical stacks top-to-bottom */ orientation?: ButtonGroupOrientation; } declare const ButtonGroup: react.ForwardRefExoticComponent>; export { ButtonGroup, type ButtonGroupOrientation, type ButtonGroupProps, type ButtonGroupSize };