export interface DetailedSessionView { id: string; repo: string; goal: string; status: string; workingBranch: string | null; prUrl: string | null; prNumber: number | null; planReady: boolean; createdAt: Date; updatedAt: Date; stoppedAt: Date | null; tasks: Array<{ id: string; title: string; status: string; reviewVerdict: string | null; reviewCycles: number | null; order: number; }>; tasksDone: number; tasksTotal: number; iterationCount: number; recentMessages: Array<{ role: string; content: string; createdAt: Date | null; }>; } export declare function buildDetailedView(sessionId: string): DetailedSessionView | null; export declare function formatDetailedView(view: DetailedSessionView): string; export declare function handleShow(sessionId: string): Promise; //# sourceMappingURL=show.d.ts.map