import { FC } from 'react'; import { CalendarProps } from '../../../Calendar'; export type DateRangeFieldCalendarProps = CalendarProps<'range'>; /** * DateRangeFieldCalendar — a range-enabled calendar component integrated * with DateRangeField for coordinated date selection. * * Purpose: * Provides a visual calendar interface for selecting a start and end date * within a specified range, while keeping the associated TextField input * synchronized. * * Features: * - Supports min/max date boundaries. * - Allows disabling specific dates through custom rules. * - Updates the shared input value when a date or range is selected. */ export declare const DateRangeFieldCalendar: FC;