import React from 'react'; export interface SessionInfo { id: string; savedAt: string; messageCount: number; preview: string; platform?: string; } interface SessionBrowserProps { sessions: SessionInfo[]; onSelect: (id: string) => void; onCancel: () => void; } export declare function visibleSessionCount(terminalHeight: number): number; export declare function SessionBrowser({ sessions, onSelect, onCancel }: SessionBrowserProps): React.ReactNode; export {}; //# sourceMappingURL=SessionBrowser.d.ts.map