/** * Live introspection of a Docker host via three independent CLI queries. * * The Docker lexicon's chant entities describe Compose / Dockerfile * authoring primitives. The runtime concept (running containers, local * images, networks) is created by `docker compose up` / `docker run` / * `docker network create` outside chant's entity model. * * docker ps --format '{{json .}}' → running containers * docker image ls --format '{{json .}}' → local images * docker network ls --format '{{json .}}' → networks * * Output is one JSON object per line (NDJSON), not a JSON array. Daemon * unreachable on any query → that query returns nothing; other queries * still proceed. */ import type { ArtifactMetadata } from "@intentius/chant/lexicon"; export declare function listArtifacts(_options: { environment: string; entities: Map; }>; }): Promise>; //# sourceMappingURL=list-artifacts.d.ts.map