/// <reference types="node" />
import * as models from "../models";
import { GameyeClient } from "./gameye";
/**
 * Fetch the game state
 */
export declare function queryGame(this: GameyeClient): Promise<models.GameQueryState>;
/**
 * Subscribe to the game state
 */
export declare function subscribeGame(this: GameyeClient): Promise<import("stream").Readable>;
