/// import type { Client } from "@colyseus/core"; import type { Room } from "../room/base.js"; import type { State } from "../state/state.js"; /** * Create and add new Bot player to clients list. * @returns clientID of newly created bot, if added successfully. * @ignore */ export declare function botAdd(this: Room, client: Client, message: ClientMessageTypes["bot_add"]): void;