/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChartComponent } from '../chart.component';
import { EventSeriesOptions } from '../api-types/event-series-options.interface';
import { SeriesPoint } from '../api-types/series-point.interface';
import { PreventableEvent } from './preventable-event';
/**
 * @hidden
 */
export declare class SeriesEvent extends PreventableEvent {
    /**
     * Specifies the data point category.
     */
    category: any;
    /**
     * Specifies the original data item.
     */
    dataItem: any;
    /**
     * Specifies the original user event that triggered the series action.
     */
    originalEvent: any;
    /**
     * Specifies the point value represented as a percentage value.
     * Available only for Donut, Pie, and 100% stacked charts.
     */
    percentage: number;
    /**
     * Specifies the hovered series point.
     */
    point: SeriesPoint;
    /**
     * Specifies the hovered point series options.
     */
    series: EventSeriesOptions;
    /**
     * Specifies the cumulative point value on the stack.
     * Available only for stackable series.
     */
    stackValue: number;
    /**
     * Specifies the data point value.
     */
    value: any;
    /**
     * @hidden
     */
    constructor(e: any, sender: ChartComponent);
}
