import { type PropsWithChildren } from 'react';
import type { ForwardRefComponent as PolymorphicForwardRefComponent } from '../utils/polymorphic';
export type ButtonGroupProps = PropsWithChildren<{
    /** The role of the group */
    role?: string;
    /** className passed in for styling */
    className?: string;
}>;
declare const ButtonGroup: PolymorphicForwardRefComponent<"div", ButtonGroupProps>;
export default ButtonGroup;
//# sourceMappingURL=ButtonGroup.d.ts.map