import { DatePickerProps } from '../../../interfaces'; interface GridDayProps { locale: string; baseDate: Date; date: Date; selectedDate?: Date | null; focusedDate: Date | null; isDateEnabled?: DatePickerProps.IsDateEnabledFunction; todayAriaLabel: string; onSelectDate: (date: Date) => void; isDateInLastWeek: boolean; } declare const GridDay: ({ locale, baseDate, date, selectedDate, focusedDate, isDateEnabled, todayAriaLabel, onSelectDate, isDateInLastWeek, }: GridDayProps) => JSX.Element; export default GridDay; //# sourceMappingURL=index.d.ts.map