/** * Write Conflict Report Tool * * Parses Convex logs and summarizes write conflicts by function and table. */ import type { Tool } from "@modelcontextprotocol/sdk/types.js"; export declare const writeConflictReportTool: Tool; interface ToolResponse { content: Array<{ type: string; text: string; }>; isError?: boolean; } export declare function handleWriteConflictReport(args?: Record): Promise; export {}; //# sourceMappingURL=write-conflict-report.d.ts.map