import { ComponentPropsWithoutRef, ReactNode } from 'react'; export interface ButtonGroupProps extends ComponentPropsWithoutRef<'div'> { children: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "hods-button-group"; /** * A component for grouping buttons and links on a single line. For more information about this component, see [GDS Grouping buttons](https://design-system.service.gov.uk/components/button/#grouping-buttons) */ export declare const ButtonGroup: ({ children, classBlock, classModifiers, className, ...attrs }: ButtonGroupProps) => import("react/jsx-runtime").JSX.Element;