export interface SessionRecord { pid: number; sessionId: string; cwd: string; startedAt: number; version: string; } export declare function registerSession(sessionId: string, cwd: string): void; export declare function unregisterSession(): void; export declare function listActiveSessions(): SessionRecord[];