/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PreventableEvent } from './preventable-event';
import { ChartComponent } from '../chart.component';
import { EventSeriesOptions } from '../api-types/event-series-options.interface';
/**
 * @hidden
 */
export declare class LegendEvent extends PreventableEvent {
    /**
     * Specifies an object that contains the series options.
     */
    series: EventSeriesOptions;
    /**
     * Specifies the index of the series in the parent Chart.
     */
    seriesIndex: number;
    /**
     * Specifies the point index in the series.
     * Applicable only for Pie, Donut, Funnel, and Pyramid series.
     */
    pointIndex: number;
    /**
     * Specifies the text of the legend item.
     */
    text: string;
    /**
     * @hidden
     */
    constructor(e: any, sender: ChartComponent);
}
