export declare class Game {
    private readonly _id;
    private readonly _name;
    private readonly _playerRegistryContractAddress;
    constructor(id: string, name: string, playerRegistryContractAddress: string);
    get id(): string;
    get name(): string;
    get playerRegistryContractAddress(): string;
}
