/** * Wraps an async MCP handler function with error handling that converts * SonarQubeAPIError instances to MCP-formatted errors * * @param fn The async function to wrap * @returns A wrapped function that handles errors appropriately */ export declare function withMCPErrorHandling Promise>(fn: T): T;