import type { DrizzleExecutor } from "../drizzle.js"; import { type PluginSource } from "./types.js"; /** Returns one installed plugin's non-secret immutable package coordinates and does not mutate durable state. This boundary lets a capability-authorized request snapshot trusted metadata without exposing variables or repository-style access. */ export declare function pluginInstallationGetRequestUninstallContext(executor: DrizzleExecutor, installationId: string): Promise<{ pluginId: string; displayName: string; shortName: string; description: string; packageDigest: string; packageDirectory: string; source: PluginSource; }>; //# sourceMappingURL=pluginInstallationGetRequestUninstallContext.d.ts.map