/** * Vigil Ink Glyphs — Unicode Box-Drawing & Semantic Symbols * * Design contract: NO emoji in chrome. All decorative elements use * Unicode symbols/glyphs for consistent rendering across terminals. * Ported from erosolar-coder's glyph system, adapted for Vigil. */ export declare const GLYPHS: { /** Rounded box corners (Ink borderStyle="round") */ readonly box: { readonly tl: "╭"; readonly tr: "╮"; readonly bl: "╰"; readonly br: "╯"; readonly h: "─"; readonly v: "│"; }; /** Filled bullet for agent actions (U+23FA BLACK TRAPEZOID) */ readonly action: "⏺"; /** Tool result turn marker (U+23BF DENTISTRY SYMBOL) */ readonly toolResult: "⎿"; /** Done/success marker */ readonly done: "✓"; /** Error marker */ readonly error: "✗"; /** Menu cursor (U+25B8 BLACK RIGHT-POINTING SMALL TRIANGLE) */ readonly menuCursor: "▸"; /** Active step cursor */ readonly activeStep: "▸"; /** Play/run (U+23F5 BLACK MEDIUM RIGHT-POINTING TRIANGLE) */ readonly play: "⏵"; /** Pause/plan (U+23F8 DOUBLE VERTICAL BAR) */ readonly pause: "⏸"; /** Done (U+2612 BALLOT BOX WITH X) */ readonly todoDone: "☒"; /** Pending (U+2610 BALLOT BOX) */ readonly todoPending: "☐"; /** Active (U+25B8) */ readonly todoActive: "▸"; readonly sparkleFrames: readonly ["·", "✢", "✳", "✶", "✻", "✽"]; /** Tree branch (U+2514 BOX DRAWINGS LIGHT UP AND RIGHT) */ readonly treeBranch: "└"; /** Plan pending (U+25A1 WHITE SQUARE) */ readonly planPending: "□"; /** Plan in progress (U+25D0 CIRCLE WITH LEFT HALF BLACK) */ readonly planProgress: "◐"; /** Plan completed (U+2714 HEAVY CHECK MARK) */ readonly planDone: "✔"; readonly diffAdd: "+"; readonly diffRemove: "-"; readonly diffContext: " "; /** Separator dot */ readonly separator: "·"; /** Ellipsis */ readonly ellipsis: "…"; /** Arrow right */ readonly arrowRight: "→"; }; //# sourceMappingURL=glyphs.d.ts.map