import { MouseEvent } from 'react'; import { IconName } from './Icon'; export type ButtonGroupItem = { id: T; label?: React.ReactNode; icon?: IconName; tooltip?: string; disabled?: boolean; }; interface Props { activeItems?: Set; buttons: ButtonGroupItem[]; onClick: (id: T, e: MouseEvent) => void; } export declare const ButtonGroup: (props: Props) => import("react/jsx-runtime").JSX.Element; export {};