import React from 'react'; import { DateChangeHandler, DayIndex } from '../index'; import { DateRangePickerProps } from '../../interfaces'; export interface GridProps { baseDate: Date; selectedStartDate: Date | null; selectedEndDate: Date | null; rangeStartDate: Date | null; rangeEndDate: Date | null; focusedDate: Date | null; focusedDateRef: React.RefObject; onSelectDate: DateChangeHandler; onGridKeyDownHandler: (e: React.KeyboardEvent) => void; onFocusedDateChange: React.Dispatch>; isDateEnabled: DateRangePickerProps.IsDateEnabledFunction; locale: string; startOfWeek: DayIndex; todayAriaLabel: string; className?: string; } export declare function Grid({ baseDate, selectedStartDate, selectedEndDate, rangeStartDate, rangeEndDate, focusedDate, focusedDateRef, onSelectDate, onGridKeyDownHandler, onFocusedDateChange, isDateEnabled, locale, startOfWeek, todayAriaLabel, className, }: GridProps): JSX.Element; //# sourceMappingURL=grid.d.ts.map