/** * @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-react-intl'; import { CalendarViewEnum } from '../models/CalendarViewEnum.js'; /** * @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?: React.SyntheticEvent): void; moveUp(view: CalendarViewEnum, event?: React.SyntheticEvent): void; moveToBottom(activeView: CalendarViewEnum): void; canMoveDown(view: CalendarViewEnum): boolean; canMoveUp(view: CalendarViewEnum): boolean; private clamp; private move; }