/** * Table Heatmap Tool * * Shows writes per minute by table using recent document creation times. */ import type { Tool } from "@modelcontextprotocol/sdk/types.js"; import type { ConvexClient } from "../convex-client.js"; export declare const tableHeatmapTool: Tool; interface ToolResponse { content: Array<{ type: string; text: string; }>; isError?: boolean; } export declare function handleTableHeatmap(client: ConvexClient, args?: Record): Promise; export {}; //# sourceMappingURL=table-heatmap.d.ts.map