/**-----------------------------------------------------------------------------------------
* 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 { AxisRange } from '../api-types/axis-range.interface';
/**
 * Represents the arguments for the `zoomEnd` event of the Chart component ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/pan-zoom#pan-and-zoom-events)).
 */
export declare class ZoomEndEvent extends BaseEvent {
    /**
     * Specifies a dictionary that contains the range of named axes.
     * Use the axis name as a key to access the minimum and maximum values.
     *
     * The dictionary includes only the affected axis ranges.
     * If an axis is locked or its range is not modified, the axis will not be listed.
     */
    axisRanges: {
        [name: string]: AxisRange;
    };
    /**
     * Specifies the original user event that triggered the zoom action.
     */
    originalEvent: any;
    /**
     * @hidden
     */
    constructor(e: any, sender: ChartComponent);
}
