/** * Locale constants for Jamf documentation */ export declare const DEFAULT_LOCALE = "en-US"; export declare const SUPPORTED_LOCALES: { readonly 'en-US': { readonly name: "English"; }; readonly 'ja-JP': { readonly name: "日本語"; }; readonly 'zh-TW': { readonly name: "繁體中文"; }; readonly 'de-DE': { readonly name: "Deutsch"; }; readonly 'es-ES': { readonly name: "Español"; }; readonly 'fr-FR': { readonly name: "Français"; }; readonly 'nl-NL': { readonly name: "Nederlands"; }; readonly 'th-TH': { readonly name: "ไทย"; }; }; export type LocaleId = keyof typeof SUPPORTED_LOCALES; export declare const SUPPORTED_LOCALE_IDS: [string, ...string[]]; export declare function toValidLocale(candidate: string): LocaleId; //# sourceMappingURL=locales.d.ts.map