import type { DrizzleExecutor } from "../drizzle.js"; import { type PluginMcpToolSummary } from "./types.js"; /** * Lists the last successfully discovered MCP tools for one installation from durable storage for a server administrator. * This boundary never contacts the plugin runtime, so ordinary tool discovery remains available while the runtime is busy or restarting. */ export declare function pluginMcpToolsList(executor: DrizzleExecutor, actorUserId: string, installationId: string): Promise<{ syncedAt?: string; tools: PluginMcpToolSummary[]; }>; //# sourceMappingURL=pluginMcpToolsList.d.ts.map