import { FC } from 'react'; import { CalendarProps } from '../../../Calendar'; export type DateFieldCalendarProps = CalendarProps; /** * DateFieldCalendar — Calendar adapter for DateField. * * Reads current value and constraints from DateFieldContext and writes the * selected date back into the underlying text input by setting the native * input value and dispatching input/change events. */ export declare const DateFieldCalendar: FC;