import React from 'react'; export interface ResumableSession { sessionId: string; name: string; projectId: string; label: string | null; } interface SessionPickerProps { sessions: ResumableSession[]; onSelect: (sessionId: string, projectId: string) => void; onCancel: () => void; } export declare function SessionPicker({ sessions, onSelect, onCancel }: SessionPickerProps): React.JSX.Element; export {};