export declare type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6; export interface LocaleData { locale: string; language: string; region: string; direction: string; isRTL: boolean; }