import type { SessionStore } from "../../session-store"; /** * Sessions live in-memory in SessionStore (Postgres-backed persistence * was dropped per the SQLite-only direction). This repository wraps the * store with a stable, project-id-aware API for the new services. */ export declare class SessionsRepository { private store; constructor(store: SessionStore); updateSessionProjectId(args: { sessionId: string; projectId: string; }): void; listManagedSessions(): import("../..").ManagedSession[]; } //# sourceMappingURL=sessions.repository.d.ts.map