import type { Game } from "./Game"; export declare const withGame: (game: Game, fn: (game: Game) => T) => T; export declare const wrapGame: (game: Game, fn: (...args: Args) => Return) => (...args: Args) => Return; export declare const currentGame: () => Game;