/** * StatusLine — Ink-rendered status bar with sparkle animation. * * Enhanced with custom sparkle spinner (6-frame star cycle at 120ms), * rotating thinking gerunds (20 whimsical verbs, 3.2s rotation), * elapsed time counter, and token usage display. Self-ticks via * useState + setInterval — survives host re-renders. * * Design contract: NO emoji in chrome. Unicode glyphs only (from glyphs.ts). * Colors from centralized color system (colors.ts). */ import React from 'react'; export interface StatusLineProps { message?: string | null; modeMessage?: string | null; spinning?: boolean; startTime?: number | null; tokensUsed?: number | null; thinkingGerund?: boolean; } export declare const StatusLine: React.FC; //# sourceMappingURL=StatusLine.d.ts.map