import { WebSocketFunctionArgs, WebSocketFunctions } from "./types"; import { IHTTPService } from "./IHTTPService"; import { ContextOptions, EventOptions } from "@skhail/core"; export declare abstract class IWebSocketService extends IHTTPService { abstract negociate>, Function extends Service[Key], Params extends WebSocketFunctionArgs>>(parameters: { method: Key; args: [...Params]; }): Promise; }