import { type AgentImageSummary } from "../chat/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Lists agent images and the configured default to a caller allowed to manage images, assign them to chats, or select a runtime for plugin installation. * Reading summaries as one response gives each authorized selection surface exact context without granting image mutation authority. */ export declare function agentImageList(executor: DrizzleExecutor, actorUserId: string): Promise<{ defaultImageId?: string; images: AgentImageSummary[]; }>; //# sourceMappingURL=agentImageList.d.ts.map