import { type ChatAgentId } from "./chat-agents/index.js"; import { type RecentSession } from "./core/project-discovery.js"; export type SidecarSession = RecentSession & { chatAgent?: ChatAgentId; }; /** * List coding or chat sessions using the caps exposed by the gg-app sidecar. * * `homeDir` only exists so tests can point the Claude Code / Codex lookup at a * fixture home; production always uses the real one. */ export declare function listSidecarSessions(cwd: string, requestedAgent: string | null, coderSessionsDir: string, homeDir?: string): Promise; //# sourceMappingURL=app-sidecar-sessions.d.ts.map