/**
 * MCP CRUD Operations Tools
 * Provides AI agents with create, update, and validation capabilities for bottlenecks
 */
import { MCPTool } from '../types/mcp.js';
import { MCPOAuthClient } from '../auth/oauth-client.js';
/**
 * Create a new bottleneck
 */
export declare function createCreateBottleneckTool(client: MCPOAuthClient): MCPTool;
/**
 * Update an existing bottleneck
 */
export declare function createUpdateBottleneckTool(client: MCPOAuthClient): MCPTool;
/**
 * Validate bottleneck data without creating/updating
 */
export declare function createValidateBottleneckDataTool(client: MCPOAuthClient): MCPTool;
//# sourceMappingURL=crud-operations.d.ts.map