import { type ToolIconId } from '@wrongstack/tools/tool-icons'; /** Active per-tool glyph profile, selected once at TUI startup. */ export declare const TOOL_GLYPHS: Record; export interface ToolVisual { /** Single-width terminal glyph for the tool. */ glyph: string; /** Canonical hex color (same value the WebUI uses). */ color: string; } /** * Resolve a tool name to its `{ glyph, color }` for TUI rendering. * Unknown / MCP / plugin tools fall back to the neutral `•` glyph + gray color. */ export declare function getToolVisual(name: string): ToolVisual; //# sourceMappingURL=tool-glyph.d.ts.map