import { type ChalkInstance } from 'chalk'; import { categorizeTool, dispatchTagForCategory, SUBAGENT_TOOLS, SKILL_TOOLS, DAG_TOOLS, NESTING_TOOLS, type ToolCategory } from '../agent/tool-category.js'; export { categorizeTool, dispatchTagForCategory, SUBAGENT_TOOLS, SKILL_TOOLS, DAG_TOOLS, NESTING_TOOLS, type ToolCategory, }; export declare const CATEGORY_HUMAN_VERB: Record; export declare function humanVerbForTool(toolName: string): string; export interface CategoryStyle { color: ChalkInstance; glyph: string; } export declare function styleForCategory(cat: ToolCategory): CategoryStyle; export declare function styleForToolName(name: string): CategoryStyle;