import React from "react";
export interface ButtonGroupProps {
    /**
     * visible arrow icons when no hover
     */
    visibleIcons?: boolean;
    children: any[];
    className?: string;
    style?: React.CSSProperties;
}
export declare const Group: {
    ({ children, className, visibleIcons, ...props }: ButtonGroupProps): JSX.Element;
    displayName: string;
};
