/** * PreToolUse output formatting */ import type { SkillScoreResult, ToolName } from './types.js'; /** * Formats matched skills into a concise context string for PreToolUse hooks. * * @param matchedSkills - Array of skill score results * @param toolName - The tool being used (Edit or Write) * @returns Formatted context string */ export declare function formatToolUseContext(matchedSkills: SkillScoreResult[], toolName: ToolName, skillContents?: Map): string; //# sourceMappingURL=tool-formatting.d.ts.map