import { type MouseEvent as ReactMouseEvent } from 'react'; /** * Hook responsible to return the handler called when clicking on a category action. * The handler will handle the logic of keeping the tooltip open in case there are * multiple entries in the tooltip, hiding the tooltip alternatively. * @param hasMultipleItems - */ export declare const useSeriesActionClickHandler: (hasMultipleItems: boolean) => (e: ReactMouseEvent) => void;