import React from 'react'; import * as StyledSystem from 'styled-system'; import { ButtonSizes, ButtonVariants, ButtonColorVariants } from '../button'; import { BoxProps } from '../box'; export interface ButtonGroupBase { size?: ButtonSizes; color?: string; variant?: ButtonVariants; variantColor?: ButtonColorVariants; isAttached?: boolean; spacing?: StyledSystem.MarginRightProps['marginRight']; children?: React.ReactNode; } export declare type ButtonGroupProps = ButtonGroupBase & BoxProps;