/**-----------------------------------------------------------------------------------------
* 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 `dragEnd` 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 DragEndEvent 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.
     */
    axisRanges: {
        [name: string]: AxisRange;
    };
    /**
     * Specifies the original user event that triggered the drag action.
     */
    originalEvent: any;
    /**
     * @hidden
     */
    constructor(e: any, sender: ChartComponent);
}
