/** * UI glyph constants, ported from the leaked Claude Code source * (`src/constants/figures.ts`). The macOS/Windows variants from the original * are kept; the plugin renders on whatever platform the user runs. */ export declare const BLACK_CIRCLE: string; /** The prompt pointer glyph (`❯`), figures.pointer. */ export declare const POINTER = "\u276F"; /** Checkmark (`✓`), figures.tick. */ export declare const TICK = "\u2713"; /** Bullet dot (`∙`), figures.bulletOperator. */ export declare const BULLET_OPERATOR = "\u2219"; /** Teardrop asterisk (`✻`), figures.teardropAsterisk. */ export declare const TEARDROP_ASTERISK = "\u273B"; /** Up arrow (`↑`). */ export declare const UP_ARROW = "\u2191"; /** Down arrow (`↓`). */ export declare const DOWN_ARROW = "\u2193"; /** Lightning bolt (`↯`), figures.lightningBolt. */ export declare const LIGHTNING_BOLT = "\u21AF"; /** Low-effort indicator: open circle (`○`). */ export declare const EFFORT_LOW = "\u25CB"; /** Medium-effort indicator: half circle (`◐`). */ export declare const EFFORT_MEDIUM = "\u25D0"; /** High-effort indicator: filled circle (`●`). */ export declare const EFFORT_HIGH = "\u25CF"; /** Max-effort indicator: bullseye (`◉`). */ export declare const EFFORT_MAX = "\u25C9"; /** Play control icon (`▶`). */ export declare const PLAY_ICON = "\u25B6"; /** Pause control icon (`⏸`). */ export declare const PAUSE_ICON = "\u23F8"; /** Refresh arrow (`↻`), MCP subscription indicator. */ export declare const REFRESH_ARROW = "\u21BB"; /** Left arrow (`←`), channel indicator. */ export declare const CHANNEL_ARROW = "\u2190"; /** Right arrow (`→`), injected-message indicator. */ export declare const INJECTED_ARROW = "\u2192"; /** Fork glyph (`⑂`), fork indicator. */ export declare const FORK_GLYPH = "\u2442"; /** Open diamond (`◇`), review status indicator. */ export declare const DIAMOND_OPEN = "\u25C7"; /** Filled diamond (`◆`), review status indicator. */ export declare const DIAMOND_FILLED = "\u25C6"; /** Reference mark (`※`), reference indicator. */ export declare const REFERENCE_MARK = "\u203B"; /** Flag icon (`⚑`), issue indicator. */ export declare const FLAG_ICON = "\u2691"; /** Blockquote bar (`▎`), left one-quarter block. */ export declare const BLOCKQUOTE_BAR = "\u258E"; /** Heavy horizontal rule (`━`). */ export declare const HEAVY_HORIZONTAL = "\u2501"; /** Bridge status spinner frames (`·|·`, `·/·`, `·—·`, `·\·`). */ export declare const BRIDGE_SPINNER_FRAMES: string[]; /** Bridge ready indicator (`·✔︎·`). */ export declare const BRIDGE_READY_INDICATOR = "\u00B7\u2714\uFE0E\u00B7"; /** Bridge failed indicator (`×`). */ export declare const BRIDGE_FAILED_INDICATOR = "\u00D7"; //# sourceMappingURL=figures.d.ts.map