import type { DrizzleExecutor } from "../drizzle.js"; import { type PluginSource } from "./types.js"; export interface PluginManagementRequestPackage { id: string; chatId: string; packageDigest: string; packageDirectory: string; source: PluginSource; } /** Returns the private staged-package coordinates for one visible approval and does not mutate durable state. This boundary lets the package store integrity-check an image or approved operation without exposing filesystem paths through routes. */ export declare function pluginManagementRequestGetPackage(executor: DrizzleExecutor, actorUserId: string, chatId: string, requestId: string): Promise; //# sourceMappingURL=pluginManagementRequestGetPackage.d.ts.map