/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Action } from '../models/NavigationAction.js'; import { CalendarViewEnum } from '../models/CalendarViewEnum.js'; import { BusViewService } from '../services/BusViewService.js'; import { ViewService } from '../models/ViewService'; import * as React from 'react'; /** * @hidden */ export declare class NavigationService { private bus; constructor(bus: BusViewService); action(event: React.KeyboardEvent): Action; move(value: Date, action: Action, activeView: CalendarViewEnum, service: ViewService, event?: React.SyntheticEvent): Date; }