export = ClientConnection; /** * @class ClientConnection * @param {string} protocol - The protocol used (http, websocket, mqtt etc) * @param {Array.} ips - The list of forwarded ips (= X-Forwarded-For http header + the final ip, i.e. client, proxy1, proxy2, etc.) * @param {object} [headers] - Optional extra key-value object. I.e., for http, will receive the request headers */ declare class ClientConnection { constructor(protocol: any, ips: any, headers?: any, internal?: any); id: string; protocol: any; headers: any; internal: any; ips: any[]; }