/**
 * MCP Read Operations Tools
 * Provides AI agents with search, list, and get capabilities for bottlenecks
 */
import { MCPTool } from '../types/mcp.js';
import { MCPOAuthClient } from '../auth/oauth-client.js';
/**
 * Search bottlenecks with filters and pagination
 */
export declare function createSearchBottlenecksTool(client: MCPOAuthClient): MCPTool;
/**
 * Get a specific bottleneck by ID
 */
export declare function createGetBottleneckTool(client: MCPOAuthClient): MCPTool;
/**
 * List bottlenecks with basic information
 */
export declare function createListBottlenecksTool(client: MCPOAuthClient): MCPTool;
//# sourceMappingURL=read-operations.d.ts.map