/** * Handles `session.deleted` — marks the session status as "cancelled" for child sessions. * * REQ-C6-01: Extracted from EventCapture god module. This handler * processes session.deleted events for both child and main sessions. * * @module session-tracker/capture/handlers/session-deleted-handler */ import type { HandlerDeps } from "./types.js"; export declare class SessionDeletedHandler { private deps; constructor(deps: HandlerDeps); handle(sessionID: string): Promise; } //# sourceMappingURL=session-deleted-handler.d.ts.map