import { CalendarPickerLocale } from '../calendar-picker.locale'; import { Month } from '../../../datetime/month'; export interface MonthPickerGridCell { month: Month; label: string; monthName: string; } export type MonthPickerGrid = MonthPickerGridCell[][]; export declare const MonthsPerRow = 4; export declare const buildMonthPickerGrid: (year: number, locale: CalendarPickerLocale) => MonthPickerGrid;