import type { DrizzleExecutor } from "../drizzle.js"; import { type PluginSource } from "./types.js"; /** * Returns one installation's package version plus its system plugin source identity to an authorized administrator without exposing configured values. * This read boundary makes update discovery installation-scoped while retaining the shared source used to fetch a replacement package. */ export declare function pluginInstallationGetSource(executor: DrizzleExecutor, actorUserId: string, installationId: string): Promise<{ installationId: string; packageDigest: string; pluginId: string; shortName: string; source: PluginSource; sourceVersion: string; }>; //# sourceMappingURL=pluginInstallationGetSource.d.ts.map