import type { FC } from 'react'; interface VisibleRangeText { start: string; end: string; } interface CalendarHeaderProps { /** Whether to show navigation arrows */ showArrows?: boolean; /** Whether to show the jump to today button */ showJumpToToday?: boolean; /** Override visible range text (for offset months in range picker) */ visibleRangeText?: VisibleRangeText; } /** * Month header with title and navigation controls. * Shows month/year and optional jump to today and prev/next arrows. * Automatically adapts to single/range calendar mode from context. */ export declare const CalendarHeader: FC; export {};