import { BasedServer } from '../server.js'; import { WebSocketSession, Context, ObservableUpdateFunction } from '@based/functions'; export declare const unsubscribeFunction: (server: BasedServer, id: number, update: ObservableUpdateFunction) => true | void; export declare const unsubscribeWs: (server: BasedServer, id: number, ctx: Context) => true | void; export declare const unsubscribeWsIgnoreClient: (server: BasedServer, id: number, ctx: Context) => true | void;