import { Command } from "@colyseus/command";
import { GameRoom } from "../rooms/GameRoom";
type Payload = {
    client: any;
    x: number;
    y: number;
};
export declare class JoinCommand extends Command<GameRoom, Payload> {
    execute({ client, x, y }: Payload): Promise<void>;
}
export {};
