/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PreventableEvent } from './preventable-event.js';
import { Charts } from '../common/charts.js';
import { EventSeriesOptions } from '../api-types/event-series-options.interface.js';
/**
 * Arguments for the `legendItemLeave` event.
 */
export declare class LegendItemLeaveEvent extends PreventableEvent {
    /**
     * An object which contains the series options.
     */
    series: EventSeriesOptions;
    /**
     * The index of the series in the parent Chart.
     */
    seriesIndex: number;
    /**
     * The point index in the series. Applicable only to the Pie, Donut, Funnel and Pyramid series.
     */
    pointIndex: number;
    /**
     * The text of the legend item.
     */
    text: string;
    /**
     * @hidden
     */
    constructor(e: any, target: Charts);
    /**
     * @hidden
     */
    preventDefault(): void;
}
