import * as http from 'http'; import { ISocketServerWrapper } from './socketServer'; export interface IOptions { path?: string; } export declare function createSocketIOSocketServer(server: http.Server, options?: IOptions): ISocketServerWrapper;