/// <reference types="socket.io" />
import SocketIO from "socket.io";
import { ClientInfo } from "@towercg2/client";
export interface Constructor {
    new (...args: any[]): any;
}
export declare function socketToClientInfo(socket: SocketIO.Socket): ClientInfo;
