import { xCharacterPlayerSettings } from "./entity/xCharacterPlayerSettings";
import { xGamePlayerSettings } from "./entity/xGamePlayerSettings";
import { xGroupSettings } from "./entity/xGroupSettings";
import { xInventorySettings } from "./entity/xInventorySettings";
import { xMasterPlayerSettings } from "./entity/xMasterPlayerSettings";
import { xMatchmakingQueueSettings } from "./entity/xMatchmakingQueueSettings";
export declare class xGNSettings {
    private masterPlayerSettings;
    private gamePlayerSettingsDict;
    private characterPlayerSettingsDict;
    private groupSettingsDict;
    private inventorySettingsDict;
    private matchmakingQueueSettingsDict;
    constructor();
    getMasterPlayerSettings(): xMasterPlayerSettings;
    getGamePlayerSettings(gameId: string): xGamePlayerSettings;
    getCharacterPlayerSettings(gameId: string): xCharacterPlayerSettings;
    getGroupSettings(gameId: string): xGroupSettings;
    getInventorySettings(gameId: string): xInventorySettings;
    getMatchmakingQueueSettings(gameId: string): xMatchmakingQueueSettings[];
}
