1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface ButtonGroupProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
4 | size?: 'sm' | 'lg';
|
5 | vertical?: boolean;
|
6 | }
|
7 | declare const ButtonGroup: BsPrefixRefForwardingComponent<'div', ButtonGroupProps>;
|
8 | export default ButtonGroup;
|