/** * Schema Drift Tool * * Compares declared vs inferred schema fields. */ import type { Tool } from "@modelcontextprotocol/sdk/types.js"; import type { ConvexClient } from "../convex-client.js"; export declare const schemaDriftTool: Tool; interface ToolResponse { content: Array<{ type: string; text: string; }>; isError?: boolean; } export declare function handleSchemaDrift(client: ConvexClient, args?: Record): Promise; export {}; //# sourceMappingURL=schema-drift.d.ts.map