/** Semantic icon constants — replaces Slack `:shortcode:` literals. * All values are raw Unicode so they render correctly on any platform * (Slack, Feishu, TUI). Slack renders Unicode emoji identically to shortcodes. */ export declare const Icons: { /** :warning: */ readonly warning: "⚠️"; /** :white_check_mark: */ readonly ok: "✅"; /** :x: */ readonly error: "❌"; /** :arrows_counterclockwise: */ readonly refresh: "🔄"; /** :hourglass_flowing_sand: */ readonly processing: "⏳"; /** :stopwatch: */ readonly stopwatch: "⏱️"; /** :repeat: */ readonly repeat: "🔁"; /** :satellite: */ readonly satellite: "🛰️"; /** :leftwards_arrow_with_hook: */ readonly reply: "↩️"; /** :hook: */ readonly hook: "🪝"; /** :speech_balloon: */ readonly waiting: "💬"; /** :fast_forward: */ readonly superseded: "⏩"; /** :octagonal_sign: */ readonly stopped: "🛑"; /** :memo: */ readonly memo: "📝"; /** :brain: */ readonly brain: "🧠"; /** :file_folder: */ readonly folder: "📁"; /** :desktop_computer: */ readonly desktop: "🖥️"; /** :scroll: */ readonly scroll: "📜"; /** :wave: */ readonly wave: "👋"; /** :no_entry: / :no_entry_sign: */ readonly blocked: "🚫"; /** :no_entry_sign: (alias for blocked — identical rendering) */ readonly noEntry: "🚫"; /** :heavy_plus_sign: */ readonly add: "➕"; /** :inbox_tray: */ readonly inbox: "📥"; /** :pencil2: */ readonly edit: "✏️"; /** :wrench: */ readonly tools: "🔧"; /** :arrow_right: */ readonly arrowRight: "➡️"; /** :arrow_left: */ readonly arrowLeft: "⬅️"; /** :arrow_forward: */ readonly resume: "▶️"; /** :double_vertical_bar: */ readonly paused: "⏸️"; /** :clock1: */ readonly scheduled: "🕐"; /** :radio_button: */ readonly pending: "🔘"; }; export type IconName = keyof typeof Icons;