import 'dayjs/locale/de'; import 'dayjs/locale/es'; import 'dayjs/locale/fr'; import 'dayjs/locale/it'; import 'dayjs/locale/ru'; import { InitOptions } from 'i18next'; /** * Locale the game is displayed in: the site passes it in the query string of the game frame url. */ export declare const getLocale: () => string; /** * Setup i18next global instance. * @param gameId The game identifier used as the default namespace * @param options i18next options */ export declare const setupTranslation: (gameId: string, options?: InitOptions) => void;