/**
 * Represents any BCP 47 locale code used for formatting and parsing numbers.
 *
 * For locales that are used for translations, please use the `SupportedLocale` type from `@arcgis/toolkit/intl`.
 */
export type Locale = HTMLElement["lang"];

export type NumberingSystem = (typeof numberingSystems)[number];

export const numberingSystems: readonly [
    "arab",
    "arabext",
    "latn"
];