/** * Common Locale Constants * * BCP 47 language tags for common locales worldwide. * * @module locale/locales */ /** * Locale regions */ export declare const LOCALE_REGIONS: { readonly AMERICAS: readonly ["en-US", "es-MX", "pt-BR", "en-CA", "fr-CA"]; readonly EUROPE: readonly ["en-GB", "de-DE", "fr-FR", "it-IT", "es-ES", "nl-NL"]; readonly ASIA_PACIFIC: readonly ["zh-CN", "ja-JP", "ko-KR", "hi-IN", "en-AU"]; readonly MIDDLE_EAST_AFRICA: readonly ["ar-SA", "he-IL", "tr-TR", "en-ZA"]; }; /** * Locale to region mapping */ export declare const LOCALE_REGIONS_DETAILED: Record; /** * Type exports */ export type LocaleRegion = (typeof LOCALE_REGIONS)[keyof typeof LOCALE_REGIONS]; export type LocaleRegionDetailed = (typeof LOCALE_REGIONS_DETAILED)[keyof typeof LOCALE_REGIONS_DETAILED]; //# sourceMappingURL=languages.d.ts.map