import { Tool } from "@modelcontextprotocol/sdk/types.js"; export declare const INSERT_CASE: Tool; export interface InsertCaseArgs { records: Record[]; } export declare function handleInsertCase(conn: any, args: InsertCaseArgs): Promise<{ content: { type: string; text: string; }[]; isError: boolean; }>;