import React from 'react'; import { type ActionListSelectionType, type onActionCallbackFunction } from './ActionListContext'; import { ContentNode } from '../../types'; interface ActionListGroupProps extends React.HTMLAttributes { /** Provides a label for the group of action items */ label: ContentNode; /** Limits the amount of selections that can be made within an action group */ selectionType?: ActionListSelectionType | null; /** A callback function that is called when an action list item is selected. */ onAction?: onActionCallbackFunction; } declare const ActionListGroup: React.ForwardRefExoticComponent>; export default ActionListGroup;