import { CalendarPickerLocale } from '../calendar-picker.locale'; import { DateStr } from '../../../datetime/dateStr'; import { Month } from '../../../datetime/month'; export interface Weekday { name: string; shortName: string; } export interface CalendarGridDate { date: DateStr; label: string; isOutsideMonth: boolean; } export type CalendarGrid = { weekdays: Weekday[]; grid: CalendarGridDate[][]; }; export declare const buildCalendarGrid: (month: Month, locale: CalendarPickerLocale) => CalendarGrid;