/**-----------------------------------------------------------------------------------------
* 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 { BaseEvent } from './base-event';
import { EventAxisOptions } from '../api-types/event-axis-options.interface';
/**
 * Represents the arguments for the `axisLabelClick` event of the Chart component ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/events)).
 */
export declare class AxisLabelClickEvent extends BaseEvent {
    /**
     * Specifies the axis options to which the label belongs.
     */
    axis: EventAxisOptions;
    /**
     * Specifies the original data item that generates the label.
     * Available only for category axes that use the `categoryField` of the series.
     */
    dataItem: any;
    /**
     * Specifies the sequential or category index of the label.
     */
    index: number;
    /**
     * Specifies the text of the label.
     */
    text: string;
    /**
     * Specifies the value or category name of the label.
     */
    value: any;
    /**
     * @hidden
     */
    constructor(e: any, sender: ChartComponent);
}
