import type { HTMLAttributes } from 'react';
export type ButtonGroupProps = {
align?: 'start' | 'center' | 'end';
stretch?: boolean;
wrap?: boolean;
vertical?: boolean;
small?: boolean;
large?: boolean;
} & HTMLAttributes;
declare const ButtonGroup: import("react").ForwardRefExoticComponent<{
align?: "start" | "center" | "end";
stretch?: boolean;
wrap?: boolean;
vertical?: boolean;
small?: boolean;
large?: boolean;
} & HTMLAttributes & import("react").RefAttributes>;
export default ButtonGroup;
//# sourceMappingURL=ButtonGroup.d.ts.map