import { FC } from 'react'; import { CalendarProps } from '../../../Calendar'; export type DateTimeFieldCalendarProps = CalendarProps; /** * DateTimeFieldCalendar — a calendar picker integrated with a DateTimeField. * * Purpose: * Handles date selection via a calendar UI and synchronizes the selected date * with the text input, preserving the current time value. * * This component acts as the calendar side of the DateTimeField, while the * input remains the single source of truth for formatted text. */ export declare const DateTimeFieldCalendar: FC;