import { type FC } from 'react'; export interface CalendarInputHeaderProps { /** Additional className for styling */ className?: string; } /** * Header with date input fields for the calendar. * Shows DateInput for single mode, two separate DateInputs with arrow separator for range mode. * Uses the actual DateInput components with full segment-based editing. * Automatically determines mode from CalendarContext. */ export declare const CalendarInputHeader: FC;