export type Locale = { languageTag: string; languageCode: string; countryCode?: string; isRTL: boolean; }; export interface LocalizationInfo { locale: Locale; timeZone: string; currencies: string[]; country: string; uses24HourClock: boolean; usesMetricSystem: boolean; } export interface LocalizationOptions { onError?: (error: Error) => void; } //# sourceMappingURL=types.d.ts.map