/** * Bazel package 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"; /** * Bazel package detector. * * Scans `MODULE.bazel` for `bazel_dep()` calls. Dependencies are deduplicated * by name. * * @experimental This API is unstable and may change without notice. */ export declare const bazelDetector: PackageDetector; /** * Bazel package reader. * * Reads `axm.json` from the Bazel external repository directory under * the output base (`external//`). The output base is checked via * the BAZEL_OUTPUT_BASE environment variable or a default location. * * @experimental This API is unstable and may change without notice. */ export declare const bazelReader: PackageReader; //# sourceMappingURL=bazel.d.ts.map