/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ConfigurationService } from '../common/configuration.service';
import { SettingsComponent } from '../common/settings.component';
import { DragAction, MousewheelZoom } from '../common/property-types';
import { Zoomable } from '../common/property-types';
import * as i0 from "@angular/core";
/**
* Represents the Kendo UI for Angular Chart Zoomable component.
* Use this component to enable zooming functionality for Charts.
* Zooming is not available for the `Donut`, `Pie`, `Funnel`, `Pyramid`, `Polar`, and `Radar` series.
*
* @example
*
* ```html-no-run
*
*
*
* ```
*/
export declare class ZoomableComponent extends SettingsComponent implements Zoomable {
configurationService: ConfigurationService;
/**
* Specifies the mousewheel zoom configuration.
*/
mousewheel: boolean | MousewheelZoom;
/**
* Specifies the selection zoom configuration.
*/
selection: boolean | DragAction;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}