import { type AgentImageSummary, type MutationHint } from "../chat/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Selects a ready image in agentImageSettings for a manageImages user or capability-authorized plugin installation. * Coupling installation provenance and the setting with sync and audit records prevents clients from seeing an unexplained default-image change. */ export declare function agentImageSetDefault(executor: DrizzleExecutor, input: { actorInstallationId?: string; actorUserId?: string; imageId: string; }): Promise<{ hint: MutationHint; image: AgentImageSummary; }>; //# sourceMappingURL=agentImageSetDefault.d.ts.map