import { default as React } from 'react'; import { DateRange } from './CalendarRange'; export type CalendarGridProps = { /** * The current year. */ year: number; /** * The current month. */ month: number; /** * The earliest date allowed by the Calendar */ minDate?: Date; /** * The oldest date allowed by the Calendar */ maxDate?: Date; /** * Offset to set the week start */ weekOffset: number; /** * Handler that is called when a date is clicked. */ onClick: (date: Date) => void; /** * The current range date. */ value: DateRange; /** * DateTimeFormat to label every day */ accessiblityTimeFormat: Intl.DateTimeFormat; }; export declare const CalendarGrid: ({ year, month, weekOffset, maxDate, minDate, onClick, value, accessiblityTimeFormat, }: CalendarGridProps) => React.JSX.Element; //# sourceMappingURL=CalendarGrid.d.ts.map