import { type MonthRangePickerMonthCellProps } from './MonthRangePickerMonthCell.types'; import 'dayjs/locale/en'; /** * MonthRangePickerMonthCell component that wraps MonthCell with range selection visual states. * * This component provides visual feedback for: * - Range start and end months * - Months in between the selected range * - Hover preview during range selection * * The actual range selection logic is handled by the parent components through * the BaseRangePickerProvider context. * * @param props - MonthRangePickerMonthCell props */ export declare function MonthRangePickerMonthCell({ isInRange, isRangeStart, isRangeEnd, onMouseEnter, onMouseLeave, handleKeyboardNavigation, ...monthCellProps }: MonthRangePickerMonthCellProps): import("react/jsx-runtime").JSX.Element;