import { PropsWithChildren } from 'react'; export interface ButtonGroupProps { /** true to render the buttons from top to bottom; otherwise, false. The default is false. */ stacked?: boolean; /** true to render the buttons in reverse order; otherwise, false. The default is false. */ reversed?: boolean; } /** Represents a component that contains a group of buttons. */ export declare const ButtonGroup: ({ children, stacked, reversed }: PropsWithChildren) => import("react").JSX.Element | null;