import { GameRepository } from "../GameRepository";
import { Game } from "../../gaming/Game";
export declare class InMemoryGameRepository implements GameRepository {
    private readonly games;
    constructor(games: Map<string, Game>);
    findByName(name: string): Promise<Game>;
}
