/** * Copyright © 2018 Galaxy Software Services https://github.com/GSS-FED/vital-ui-kit-react * MIT license */ import { BoxProps } from '@vital-ui/react-utils'; export interface ButtonGroupProps extends BoxProps { vertical?: boolean; /** Horizontal margin between buttons */ marginHorizontal?: string; } /** * @name ButtonGroup * @description Button component with group * ```tsx * * * * * * * * * * * * * ``` */ export declare const ButtonGroup: import("styled-components").StyledComponent<"div", any, ButtonGroupProps, never>;