/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { DateInputsClassStructure } from '@progress/kendo-react-common'; import { CalendarHeaderTitleProps } from './CalendarHeaderTitle.js'; import { BusViewService } from '../services/index.js'; import { ViewService, CalendarViewEnum } from '../models/index.js'; import { CalendarHeaderProps } from '../models/CalendarSettings'; import * as React from 'react'; /** * @hidden */ export interface HeaderEventArguments { syntheticEvent: React.SyntheticEvent; nativeEvent?: any; value: Date; target: any; isTodayClick?: boolean; } /** * @hidden */ export interface HeaderProps { activeView: CalendarViewEnum; bus: BusViewService; currentDate: Date; max?: Date; min?: Date; rangeLength?: number; service: ViewService; headerTitle?: React.ComponentType; header?: React.ComponentType; commands?: React.ReactNode; verticalView?: boolean; unstyled?: DateInputsClassStructure; } /** * @hidden */ export declare const headerDefaultProps: { rangeLength: number; min: Date; max: Date; }; /** * @hidden */ export declare const Header: (props: HeaderProps) => React.JSX.Element;