import { Locale } from 'decentraland-ui/dist/components/Language/Language'; import { TranslationKeys } from './types'; export declare const FETCH_TRANSLATIONS_REQUEST = "[Request] Fetch Translations"; export declare const FETCH_TRANSLATIONS_SUCCESS = "[Success] Fetch Translations"; export declare const FETCH_TRANSLATIONS_FAILURE = "[Failure] Fetch Translations"; export declare const fetchTranslationsRequest: (locale: Locale) => import("typesafe-actions/dist/types").PayloadAction<"[Request] Fetch Translations", { locale: Locale; }>; export declare const fetchTranslationsSuccess: (locale: Locale, translations: TranslationKeys) => import("typesafe-actions/dist/types").PayloadAction<"[Success] Fetch Translations", { locale: Locale; translations: TranslationKeys; }>; export declare const fetchTranslationsFailure: (error: string) => import("typesafe-actions/dist/types").PayloadAction<"[Failure] Fetch Translations", { error: string; }>; export type FetchTranslationsRequestAction = ReturnType; export type FetchTranslationsSuccessAction = ReturnType; export type FetchTranslationsFailureAction = ReturnType; export declare const CHANGE_LOCALE = "Change locale"; export declare const changeLocale: (locale: Locale) => import("typesafe-actions/dist/types").PayloadAction<"Change locale", { locale: Locale; }>; export type ChangeLocaleAction = ReturnType;