import en from './en';
import es from './es';
import fr from './fr';
import ko from './ko';
import pl from './pl';
import pt from './pt';
import ru from './ru';
import zh from './zh';
export interface AvailableLocales {
    en: Record<string, string>;
    es: Record<string, string>;
    fr: Record<string, string>;
    ko: Record<string, string>;
    pl: Record<string, string>;
    pt: Record<string, string>;
    ru: Record<string, string>;
    zh: Record<string, string>;
}
export { en, es, fr, ko, pl, pt, ru, zh, };
