import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface ButtonGroupProps extends BsPrefixProps, JSX.HTMLAttributes { size?: "sm" | "lg"; vertical?: boolean; } declare const ButtonGroup: BsPrefixRefForwardingComponent<"div", ButtonGroupProps>; export default ButtonGroup;