import { PlayerAnimations } from "./animation"; import ServerMQTT from "../utils/mqtt"; import ServerSocket from "../utils/socket"; import { TwinConfig } from "../panda"; import { Scene } from "three"; declare class PlayerTwin { animations: PlayerAnimations; type: string; mqtt?: ServerMQTT; websocket?: ServerSocket; constructor(scene: Scene, twin: TwinConfig, animations: PlayerAnimations); sendMsg(msg: any): void; close(): void; sendSucCallBack(): void; onMqttTwinOperation(topic: string, message: any): void; onSocketTwinOperation(message: any): void; } export { PlayerTwin };