export interface SessionInfo { id: string; projectId: string | null; name: string | null; projectPath: string | null; status: "active" | "archived" | "deleted"; createdAt: string; lastActiveAt: string; viewedAt: string | null; metadata: string | null; } export interface SessionCreateParams { projectId?: string; name?: string; projectPath?: string; } //# sourceMappingURL=session.d.ts.map