import { DateRange, Matcher } from 'react-day-picker'; import { DisableCalendarDates, RangeContext } from '../CalendarTypes'; type Props = { rangeContext?: RangeContext; availableDates?: DisableCalendarDates['availableDates']; calendarRange?: DateRange; }; export declare const handleRangeContextDisabledDates: ({ rangeContext, availableDates, calendarRange, }: Props) => { findFirstPossibleRangeContextCheckIn: { checkIn: Date; firstCheckOut: Date; lastCheckOut: Date; } | undefined; findLastPossibleRangeContextCheckOut: { checkIn: Date; firstCheckOut: Date; lastCheckOut: Date; } | undefined; firstPossibleRangeContextCheckIn: Matcher[]; lastPossibleRangeContextCheckOut: Matcher[]; currentSelectionAvailability: { checkIn: Date; firstCheckOut: Date; lastCheckOut: Date; } | undefined; }; export {};