/** * 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 SfGqlCreateToolOptions { primeDeps?: PrimeDeps; } export declare function registerSfGqlCreateTool(server: McpServer, opts?: SfGqlCreateToolOptions): void;