/** * Language codes that can be used with GoodData. * * @public */ export type ILocale = "en-US" | "en-US-x-24h" | "de-DE" | "es-ES" | "fr-FR" | "ja-JP" | "nl-NL" | "pt-BR" | "pt-PT" | "zh-Hans" | "ru-RU" | "it-IT" | "es-419" | "fr-CA" | "en-GB" | "en-AU" | "fi-FI" | "zh-Hant" | "zh-HK" | "tr-TR" | "pl-PL" | "ko-KR" | "sl-SI" | "id-ID" | "th-TH" | "vi-VN" | "uk-UA"; /** * Array of locales for type-guard. It must be the same as {@link ILocale} * * @internal */ export declare const LOCALES: string[]; /** * Type-guard for language codes that can be used with GoodData. * * @public */ export declare const isLocale: (locale: unknown) => locale is ILocale; /** * Default value for {@link ILocale}. * * @public */ export declare const DefaultLocale: ILocale; //# sourceMappingURL=localization.d.ts.map