import { ActionMenuButtonsProps } from './ActionMenuButtons.types'; /** * ActionMenuButtons displays a row of primary action buttons with an optional * dropdown menu for secondary actions. * * This component matches the ib-ui ActionMenuButtons API exactly. * * Primary actions are rendered as icon-only buttons. * Secondary actions appear in a dropdown menu. * * @example * ```tsx * , onClick: handleDownload }, * { id: 'add', displayText: 'Add', icon: , onClick: handleAdd }, * { id: 'delete', displayText: 'Delete', icon: , onClick: handleDelete }, * ]} * primaryActions={['download', 'add']} * /> * ``` */ export declare function ActionMenuButtons({ actions, dropdownMenuType, menuDataId, menuDisabled, primaryActions, showDropdownActionIcon, gapSize, buttonSize, inverse, menuIcon, buttonVariant, buttonTabIndex, ...props }: ActionMenuButtonsProps): import("react/jsx-runtime").JSX.Element | null; export default ActionMenuButtons; //# sourceMappingURL=ActionMenuButtons.d.ts.map