/**-----------------------------------------------------------------------------------------
* 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 { CategoryAxis, Pane, Series } from '../common/property-types';
import { Navigator, NavigatorHint, NavigatorSelect } from './option-types';
import * as i0 from "@angular/core";
/**
* Represents the Kendo UI StockChart Navigator component for Angular ([see runnable example](https://www.telerik.com/kendo-angular-ui/components/charts/stock-chart)).
*
* @example
* ```ts
* _@Component({
* selector: 'my-app',
* template: `
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* `
* })
* ```
*
* @remarks
* Supported children components are: {@link NavigatorSelectComponent}, {@link NavigatorSeriesComponent}, {@link NavigatorHintComponent}, {@link CategoryAxisComponent}, and {@link NavigatorPaneComponent}.
*/
export declare class NavigatorComponent extends SettingsComponent implements Navigator {
configurationService: ConfigurationService;
position: 'top' | 'bottom';
visible: boolean;
categoryAxis: CategoryAxis;
hint: NavigatorHint;
pane: Pane;
select: NavigatorSelect;
series: Series | Series[];
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}