/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { ViewService } from '../models/ViewService';
import { IntlService } from '@progress/kendo-vue-intl';
import { CalendarViewEnum } from '../models/CalendarViewEnum';
/**
 * @hidden
 */
export declare class BusViewService {
    private onViewChanged;
    private bottom;
    private top;
    constructor(onViewChanged: any);
    configure(bottom: CalendarViewEnum, top: CalendarViewEnum): void;
    service(view: CalendarViewEnum, intl: IntlService): ViewService;
    moveDown(view: CalendarViewEnum, event?: any): void;
    moveUp(view: CalendarViewEnum, event?: any): void;
    moveToBottom(activeView: CalendarViewEnum): void;
    canMoveDown(view: CalendarViewEnum): boolean;
    canMoveUp(view: CalendarViewEnum): boolean;
    private clamp;
    private move;
}
