/** * Status bar showing thread info, stats, and streaming indicator. */ import React from 'react'; import type { HistoryStats } from '../../lib/history.js'; interface StatusBarProps { threadName: string; stats: HistoryStats; isProcessing: boolean; error: string | null; } export declare function StatusBar({ threadName, stats, isProcessing, error, }: StatusBarProps): React.ReactElement; export {}; //# sourceMappingURL=StatusBar.d.ts.map