export declare type Septuple = [T, T, T, T, T, T, T]; export declare type Duodecuple = [T, T, T, T, T, T, T, T, T, T, T, T]; export declare type Pair = [T, T]; export interface IDatepickerFormatsLocaleValues { year: string; month: string; date: string; datetime: string; time: string; } export interface IDatepickerLocaleValues { months: Duodecuple; monthsShort: Duodecuple; weekdays: Septuple; weekdaysShort: Septuple; weekdaysNarrow: Septuple; timesOfDay: Pair; timesOfDayUppercase: Pair; timesOfDayLowercase: Pair; firstDayOfWeek: number; formats: IDatepickerFormatsLocaleValues; }