/** * Utility functions for tool filtering */ /** * Normalize tool name using Unicode NFC normalization * * Why: Ensures consistent matching across different Unicode representations * Example: "café" (composed) vs "café" (decomposed) match correctly */ export declare function normalizeToolName(name: string): string; //# sourceMappingURL=utils.d.ts.map