/// import { ComponentProps } from '@hitagi/utils/types'; import { Wrapper } from './ButtonGroup.styled'; import Button from '../Button/Button'; type ButtonGroupProps = ComponentProps & Pick, 'size' | 'fullWidth' | 'disableBg' | 'disableOutline' | 'bg' | 'disabled'>; /** * Buttons Group is used to display multiple buttons, grouped together.
* They can be arranged either horizontally or vertically. */ export default function ButtonGroup(props: ButtonGroupProps): JSX.Element; export {};