import { NextClawRealtimeSubscription } from "../types/nextclaw-realtime.types.js"; import { NextClawClientOptions, NextClawRealtimeHandler, NextClawRealtimeSubscribeOptions } from "../types/nextclaw-request.types.js"; //#region src/services/realtime.service.d.ts declare class RealtimeService { private readonly options; private readonly baseUrl; private readonly transport; private readonly webSocketFactory?; constructor(options: NextClawClientOptions); readonly subscribe: (handler: NextClawRealtimeHandler, options?: NextClawRealtimeSubscribeOptions) => NextClawRealtimeSubscription; private readonly createSocket; private readonly parseEvent; } //#endregion export { RealtimeService }; //# sourceMappingURL=realtime.service.d.ts.map