/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
/**
 * Represents the context for the series highlight `toggle` function.
 */
export interface HighlightToggleArgs {
    /**
     * Provides a function that prevents the default highlight overlay from appearing.
     */
    preventDefault: () => void;
    /**
     * Indicates whether the highlight should be displayed.
     */
    show: boolean;
    /**
     * Specifies the visual element that needs to be highlighted.
     */
    visual: drawing.Element;
    /**
     * Specifies the category of the point.
     */
    category: any;
    /**
     * Specifies the data item associated with the point.
     */
    dataItem?: any;
    /**
     * Specifies the value of the point.
     */
    value: any;
    /**
     * Specifies the series to which the point belongs.
     */
    series?: any;
}
