import type { IServerManager } from "../types.js"; import { z } from "zod"; import { MCPServerTool } from "./base.js"; declare const ReleaseConnectionSchema: z.ZodObject<{}, z.core.$strip>; /** Deactivates the current MCP server without closing its client session. */ export declare class ReleaseMCPServerConnectionTool extends MCPServerTool { /** Tool name exposed to the model. */ name: string; /** Tool description exposed to the model. */ description: string; /** Empty input schema. */ schema: z.ZodObject<{}, z.core.$strip>; constructor(manager: IServerManager); /** @returns A message identifying the deactivated server, or stating there is none. */ _call(): Promise; } export {}; //# sourceMappingURL=release_mcp_server_connection.d.ts.map