import React from 'react'; import { type ActionListSelectionType, type onActionCallbackFunction } from './ActionListContext'; interface ActionListProps extends React.HTMLAttributes { children: React.ReactNode; /** Limits the amount of selections that can be made within an action list */ selectionType?: ActionListSelectionType | null; /** A callback function that is called when an action list item is selected. */ onAction?: onActionCallbackFunction; } declare const ActionList: React.ForwardRefExoticComponent>; export default ActionList;