import type { IServerManager } from "../types.js"; import { z } from "zod"; import { MCPServerTool } from "./base.js"; declare const PresentActiveServerSchema: z.ZodObject<{}, z.core.$strip>; /** Reports the MCP server whose tools are currently active. */ export declare class AcquireActiveMCPServerTool 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 active server, or stating there is none. */ _call(): Promise; } export {}; //# sourceMappingURL=acquire_active_mcp_server.d.ts.map