export type CliSessionSummary = { sessionId: string; title: string; cwd: string | null; updatedAt: string; updatedAtMs: number; messageCount: number; }; export declare function listCliSessions(params?: { cwd?: string; }): Promise; export declare function latestCliSessionForCwd(cwd: string): Promise;