import { ModuleWithProviders, InjectionToken } from '@angular/core'; import { WrappedSocket } from './socket-io.service'; import { SocketIoConfig } from './socketIoConfig'; /** Socket factory */ export declare function SocketFactory(config: SocketIoConfig): WrappedSocket; export declare const SOCKET_CONFIG_TOKEN: InjectionToken; export declare class SocketIoModule { static forRoot(config: SocketIoConfig): ModuleWithProviders; }