export interface IButtonGroupProps {
    /**
     * Optional class name to add to the button group.
     */
    className?: string;
    /**
     * Optional role to apply to the div containing the group, e.g. "menubar"
     */
    role?: string;
}
