/** * Retrieves the current default locale of the environment. * * @remarks * Before [tc39/ecma402#68](https://github.com/tc39/ecma402/issues/68) gets resolved, * there is no official approach to retrieve user's "current locale" per se. Thus this * implementation is currently using the default {@link Intl.Collator} locale * as an approximation. * * Note that the implementation is subject to changes in the future. */ export declare function getDefaultLocale(): Intl.Locale; /** * Retrieves the current best approximity of invariant locale * (like "culture-independent", or "invariant culture" in .NET). * * @remarks * Currently this implementation is returning `en` as a "standard" locale * for various locale-related operations, such as sorting, formatting, etc. * * Note that the implementation is subject to changes in the future. */ export declare function getInvariantLocale(): Intl.Locale; //# sourceMappingURL=defaultLocales.d.ts.map