import { Locale } from 'decentraland-ui/dist/components/Language/Language'; import { fetchTranslationsRequest } from '../../modules/translation/actions'; import { TranslationKeys } from '../../modules/translation/types'; export type Props = { locale?: Locale; locales: Locale[]; translations?: TranslationKeys; children?: React.ReactNode; onFetchTranslations: typeof fetchTranslationsRequest; }; export type OwnProps = Pick; export type MapStateProps = Pick; export type MapDispatchProps = Pick;