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