///
import { ButtonColor, ButtonShape, ButtonSize, ButtonVariant } from "./button.shared";
interface ButtonGroupContextValue {
variant?: ButtonVariant;
shape?: ButtonShape;
size?: ButtonSize;
color?: ButtonColor;
hairline?: boolean;
disabled?: boolean;
}
declare const ButtonGroupContext: import("react").Context;
export default ButtonGroupContext;