import { Schema } from "@colyseus/schema"; type GameClientOptions = { id: string; ready?: boolean; isBot?: boolean; } | string; export declare class GameClient extends Schema { id: string; ready: boolean; isBot: boolean; constructor(options: GameClientOptions); } export {};