import React from 'react'; import { DateChangeHandler, DayIndex, MonthChangeHandler } from '../index'; import { MoveFocusHandler } from '../../../date-picker/calendar/utils/move-focus-handler'; import { DateRangePickerProps } from '../../interfaces'; export interface GridProps { baseDate: Date; selectedStartDate: Date | null; selectedEndDate: Date | null; focusedDate: Date | null; onFocusedDateChange: React.Dispatch>; isDateEnabled: DateRangePickerProps.IsDateEnabledFunction; isSingleGrid: boolean; onSelectDate: DateChangeHandler; onChangeMonth: MonthChangeHandler; handleFocusMove: MoveFocusHandler; locale: string; startOfWeek: DayIndex; todayAriaLabel: string; } export declare function selectFocusedDate(selected: Date | null, baseDate: Date, isDateEnabled: DateRangePickerProps.IsDateEnabledFunction): Date | null; export declare const Grids: ({ baseDate, selectedStartDate, selectedEndDate, focusedDate, onFocusedDateChange, isDateEnabled, isSingleGrid, onSelectDate, onChangeMonth, handleFocusMove, locale, startOfWeek, todayAriaLabel, }: GridProps) => JSX.Element; //# sourceMappingURL=index.d.ts.map