import * as React from 'react';
export interface Props {
    /** Join buttons as segmented group */
    segmented?: boolean;
    /** Buttons will stretch/shrink to occupy the full width */
    fullWidth?: boolean;
    /** Remove top left and right border radius */
    connectedTop?: boolean;
    /** Button components */
    children?: React.ReactNode;
}
export default function ButtonGroup({ children, segmented, fullWidth, connectedTop, }: Props): JSX.Element;
