/**
 * NPM Package-specific MCP Handler
 *
 * This class extends the shared BaseMCPHandler and adds NPM package-specific
 * optimizations and transport handling. It maintains all the functionality of the
 * original handler while eliminating code duplication.
 */
export class MCPHandler extends BaseMCPHandler {
    constructor(apiKey: any);
    /**
     * Get registry statistics (for debugging and monitoring)
     */
    getStats(): {
        totalHandlers: number;
        handlersByCategory: {};
        registeredTools: any[];
    };
    /**
     * Check if handler is initialized
     */
    isInitialized(): boolean;
}
import { BaseMCPHandler } from "../../shared/core/base-mcp-handler.cjs";
//# sourceMappingURL=mcp-handler.d.cts.map