/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { type PrimeDeps } from "../../lib/prime-schema.js"; export interface SfGqlUpdateToolOptions { primeDeps?: PrimeDeps; } export declare function registerSfGqlUpdateTool(server: McpServer, opts?: SfGqlUpdateToolOptions): void;