import React from 'react'; import { MenuItem } from '../menu_item'; export interface ActionsMenuProps { actionsConfig: { actionLabel: string; onClick: () => void; closeOnClick?: boolean; actionVariant?: React.ComponentProps['variant']; testId?: string; pendoTag?: string; }[]; optionsButtonLabel?: string; optionsButtonPendoTag?: string; } declare const _default: React.ForwardRefExoticComponent>; export default _default;