/** A coherent, switchable glyph language for TUI chrome. */ export type IconStyle = 'unicode' | 'nerd' | 'ascii'; export interface UiGlyphs { brand: string; prompt: string; success: string; failure: string; warning: string; info: string; idle: string; running: string; /** Paused — a process / phase / mission that is alive but not advancing. */ pause: string; pending: string; folder: string; workingDirectory: string; goal: string; clock: string; gitBranch: string; sessions: string; tools: string; save: string; audit: string; plan: string; task: string; fleet: string; bug: string; mail: string; peers: string; desktop: string; web: string; terminal: string; context: string; cost: string; index: string; queue: string; process: string; cpu: string; brain: string; auto: string; segmentStart: string; segmentTransition: string; segmentEnd: string; pillLeft: string; pillRight: string; pillDot: string; railHeavy: string; railMid: string; railLight: string; cornerTL: string; cornerTR: string; cornerBL: string; cornerBR: string; edgeT: string; edgeB: string; dividerDot: string; dividerDash: string; dividerWave: string; dividerDiamond: string; meterFull: string; meter7: string; meter5: string; meter3: string; meterEmpty: string; meterLight: string; ladder: string; ladderFull: string; ladderStep: string; arrowRight: string; arrowDoubleRight: string; arrowUp: string; arrowDown: string; pulseHigh: string; pulseMid: string; pulseLow: string; diamond: string; diamondOpen: string; triangleUp: string; triangleDown: string; triangleRight: string; barFull: string; barEmpty: string; barFade: string; blockStack: string; block: string; spike: string; star4: string; star8: string; ring: string; dot: string; target: string; hash: string; at: string; link: string; lock: string; unlock: string; bell: string; zap: string; filter: string; search: string; tag: string; flame: string; sparkle: string; pin: string; bookmark: string; flag: string; shield: string; check: string; cross: string; bullet: string; bulletOpen: string; bulletSquare: string; bulletHalf: string; bulletQuarter: string; bulletThreeQuarter: string; sparkHi: string; sparkMid: string; sparkLo: string; sparkEmpty: string; segmentStartLine: string; segmentTransitionLine: string; segmentEndLine: string; cell0: string; cell1: string; cell2: string; cell3: string; cell4: string; cell5: string; cell6: string; cell7: string; cell8: string; cellFull: string; cellEmpty: string; indent: string; treeLast: string; treeBranch: string; treeThrough: string; } export declare function resolveIconStyle(env?: NodeJS.ProcessEnv): IconStyle; export declare function glyphSet(style?: IconStyle): UiGlyphs; export declare const glyphs: UiGlyphs; //# sourceMappingURL=ui-glyphs.d.ts.map