import React from 'react'; export interface SessionEntry { id: string; repo: string; goal: string; status: string; prNumber: number | null; } interface SessionRowProps { session: SessionEntry; } export declare function SessionRow({ session }: SessionRowProps): React.ReactElement; interface SessionListViewProps { sessions: SessionEntry[]; } export declare function SessionListView({ sessions }: SessionListViewProps): React.ReactElement; export {}; //# sourceMappingURL=session-list.d.ts.map