import { Language } from '../types'; import { Locale } from './locales'; /** * @name languages * @description language object describes the information for each country and language, user in the interface will choose between languages. * * (example: Austria will be rendered as a flag and the language will be German, same as Germany) * * Means that ONE language can be used in MULTIPLE countries. * * @type {Language[]} languages * * @see https://www.fincher.org/Utilities/CountryLanguageList.shtml */ export declare const rawLanguages: Language[]; export declare const languages: Language[]; export declare const defaultLanguage: Language | undefined; export declare const allLocales: readonly ("de" | "en" | "es" | "fr" | "it" | "pt" | "ja" | "zh" | "ko" | "ru" | "es-ES" | "es-AR" | "es-BO" | "es-VE" | "es-MX" | "es-CL" | "es-CO" | "es-CR" | "es-DO" | "es-EC" | "es-SV" | "en-US" | "en-GB" | "en-CA" | "en-AU" | "fr-FR" | "fr-CA" | "de-DE" | "de-AT" | "de-CH" | "de-LU" | "de-LI" | "it-IT" | "pt-PT" | "pt-BR" | "ja-JP" | "zh-CN" | "zh-TW" | "ko-KR" | "ru-RU" | "ar-SA" | "hi-IN" | "bn-BD" | "ur-PK" | "fa-IR" | "tr-TR" | "nl-NL" | "sv-SE" | "pl-PL" | "id-ID" | "ca-ES" | "eu-ES" | "gl-ES" | "fi-FI" | "no-NO" | "da-DK" | "el-GR")[]; /** * Provide **Country** codes of the desired languages, ES for Spanish, US for English, DE for German * @param countryCodes * @returns */ export declare const getSupportedLanguages: (wantedLocales?: Locale[]) => typeof languages; export declare const getLanguage: (locale: Locale) => Language | undefined; //# sourceMappingURL=Languages.d.ts.map