/** * Centralized Unicode symbols used across the TUI. * * Platform-specific characters are detected at import time so every * consumer gets the correct glyph without duplicating the check. */ /** Status dot — ⏺ on macOS, ● elsewhere. */ export declare const BLACK_CIRCLE: string; /** Tool result bracket — ⎿ (U+23BF). */ export declare const RETURN_SYMBOL = "\u23BF"; /** Plan mode prefix — ⊞ (U+229E). */ export declare const PLAN_SYMBOL = "\u229E"; /** Light dashed horizontal line — ╌ (U+254C). */ export declare const DASHED_H = "\u254C"; /** Light shade block — ░ (U+2591). */ export declare const LIGHT_SHADE = "\u2591"; /** Bullet operator — ∙ (U+2219). */ export declare const BULLET_OPERATOR = "\u2219"; /** Down arrow — ↓ for token flow. */ export declare const DOWN_ARROW = "\u2193"; /** Up arrow — ↑ for output tokens. */ export declare const UP_ARROW = "\u2191"; /** * Partial block characters for gauge bars, from empty (index 0) to full * (index 8). Moved here from Footer.tsx for reuse. * * Index: 0=" " 1=▏ 2=▎ 3=▍ 4=▌ 5=▋ 6=▊ 7=▉ 8=█ */ export declare const PARTIAL_BLOCKS: string[]; //# sourceMappingURL=figures.d.ts.map