1export type Localization = { 2 locale: string; 3 locales: string[]; 4 timezone: string; 5 isoCurrencyCodes?: string[]; 6 country?: string; 7 isRTL: boolean; 8}; 9