/** * Normalizes a tool name to a standard format for comparison. * * This function converts various naming conventions (snake_case, kebab-case, * camelCase, space-separated, or uppercase) into a normalized lowercase * underscore format for consistent matching. * * @param toolName - The tool name to normalize * @returns Normalized tool name in lowercase underscore format * @example * normalizeToolName('list-servers') // returns 'list_servers' * normalizeToolName('LIST_SERVERS') // returns 'list_servers' * normalizeToolName('chatCompletions') // returns 'chat_completions' * normalizeToolName('chat_completions') // returns 'chat_completions' */ export declare function normalizeToolName(toolName: string): string; //# sourceMappingURL=name-converter.d.ts.map