import type { DrizzleExecutor } from "../drizzle.js"; export interface AgentEnvironmentHostSummary { id: string; name: string; status: "pending" | "building" | "ready" | "failed"; builtin: boolean; active: boolean; } /** * Lists the non-sensitive agent environment projection exposed after plugin-host capability authorization. * Keeping Dockerfiles out of the catalog preserves their focused per-manifest read operation and keeps list responses bounded. */ export declare function agentImageListForHost(executor: DrizzleExecutor): Promise<{ defaultEnvironmentId?: string; environments: AgentEnvironmentHostSummary[]; }>; //# sourceMappingURL=agentImageListForHost.d.ts.map