import React from 'react'; import type { SessionRecord } from '../services/sessionRestoreStore.js'; interface RestoreSessionsProps { sessions: SessionRecord[]; /** Whether to show which project each session belongs to. */ showProject?: boolean; onRestore: () => void; onDiscard: () => void; } /** * Startup offer to launch the sessions that were open when ccmanager last ran. * * Restoring runs each session's command preset in its worktree again; the * previous terminal output and conversation are not brought back. Declining * forgets the listed sessions, so the offer does not reappear on the next * start. */ declare const RestoreSessions: React.FC; export default RestoreSessions;