/** * Docker image detector and reader for package-compatibility discovery. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Docker package detector. * * Scans `Dockerfile`, `docker-compose.yml`, and `docker-compose.yaml` * for image dependencies. * * @experimental This API is unstable and may change without notice. */ export declare const dockerDetector: PackageDetector; /** * Docker package reader. * * Inspects local Docker image metadata for `sh.axm.recommended-extensions` * annotation. Since inspecting Docker images requires the Docker CLI, * this reader returns Option.none when Docker is not available. * * @experimental This API is unstable and may change without notice. */ export declare const dockerReader: PackageReader; //# sourceMappingURL=docker.d.ts.map