import type { DrizzleExecutor } from "../drizzle.js"; import { type PluginInstallationStatus } from "./types.js"; /** * Returns the current status and identity needed to authorize one installed plugin MCP connection without exposing its configuration. * This read-only lookup does not mutate durable state and keeps MCP readiness enforcement at the installation boundary. */ export declare function pluginInstallationGetStatus(executor: DrizzleExecutor, installationId: string): Promise<{ id: string; status: PluginInstallationStatus; }>; //# sourceMappingURL=pluginInstallationGetStatus.d.ts.map