import type { DrizzleExecutor } from "../drizzle.js"; export interface StoredPluginImage { pluginId: string; shortName: string; packageDigest: string; packageDirectory: string; storageKey: string; contentType: string; size: number; checksumSha256: string; } /** * Returns one plugin image's private locator and public metadata after requiring managePlugins permission. * This read-only boundary does not mutate durable state and prevents routes from reading package paths without a durable plugin record. */ export declare function pluginGetImage(executor: DrizzleExecutor, actorUserId: string, pluginId: string): Promise; //# sourceMappingURL=pluginGetImage.d.ts.map