import type React from 'react'; export interface CheckpointTimelineProps { checkpoints: Array<{ promptIndex: number; promptPreview: string; ts: string; fileCount: number; }>; selected: number; onSelect: (index: number) => void; onConfirm: (index: number) => void; onClose: () => void; } /** * Full-screen checkpoint timeline overlay for the /rewind command. * Arrow keys to navigate, Enter to rewind to selected, Esc to close. */ export declare function CheckpointTimeline({ checkpoints, selected, onSelect, onConfirm, onClose, }: CheckpointTimelineProps): React.ReactElement; //# sourceMappingURL=checkpoint-timeline.d.ts.map