/** * StatusBar — minimal, always-visible session footer. * * Composition (left → right): * · · · * ⌬ · ∩ · ∞ * * The family sigil is rendered in the muted accent so it acts as a * subtle watermark rather than competing with content. */ import React from 'react'; import type { SessionStats } from '../hooks/useCommands.js'; interface StatusBarProps { conversationId?: string; stats: SessionStats; } export declare const StatusBar: React.FC; export {}; //# sourceMappingURL=StatusBar.d.ts.map