import en_achievements from '../languages/en/en_achievements.json';
import en_commodities from '../languages/en/en_commodities.json';
import en_contracts from '../languages/en/en_contracts.json';
import en_cosmetics from '../languages/en/en_cosmetics.json';
import en_events from '../languages/en/en_events.json';
import en_factions from '../languages/en/en_factions.json';
import en_items from '../languages/en/en_items.json';
import en_locations from '../languages/en/en_locations.json';
import en_materials from '../languages/en/en_materials.json';
import en_modifications from '../languages/en/en_modifications.json';
import en_regions from '../languages/en/en_regions.json';
import en_perks from '../languages/en/en_perks.json';
import en_seasons from '../languages/en/en_seasons.json';
import en_sets from '../languages/en/en_sets.json';
import en_ships from '../languages/en/en_ships.json';
import en_territories from '../languages/en/en_territories.json';
import en_ultimates from '../languages/en/en_ultimates.json';
import en_worldEvents from '../languages/en/en_worldEvents.json';
type LanguageData = {
    achievements: typeof en_achievements.achievements;
    commodities: typeof en_commodities.commodities;
    contracts: typeof en_contracts.contracts;
    cosmetics: typeof en_cosmetics.cosmetics;
    events: typeof en_events.events;
    factions: typeof en_factions.factions;
    items: typeof en_items.items;
    locations: {
        [key in keyof typeof en_locations.locations]: string;
    };
    materials: typeof en_materials.materials;
    modifications: typeof en_modifications.modifications;
    regions: typeof en_regions.regions;
    perks: typeof en_perks.perks;
    seasons: typeof en_seasons.seasons;
    sets: typeof en_sets.sets;
    ships: typeof en_ships.ships;
    territories: typeof en_territories.territories;
    ultimates: typeof en_ultimates.ultimates;
    worldEvents: typeof en_worldEvents.worldEvents;
};
type LanguagesType = {
    AR: LanguageData;
    DE: LanguageData;
    EN: LanguageData;
    ES: LanguageData;
    FR: LanguageData;
    ZH: LanguageData;
};
export declare const Languages: LanguagesType;
export {};
//# sourceMappingURL=languages.d.ts.map