/** * Conda 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"; /** * Conda package detector. * * Scans `environment.yml` and `meta.yaml` in the project directory * for conda dependencies. * * @experimental This API is unstable and may change without notice. */ export declare const condaDetector: PackageDetector; /** * Conda package reader. * * Reads `$CONDA_PREFIX/share/axm//axm.json` as primary source, * falling back to package cache `info/about.json` with `extra.axm` key. * * @experimental This API is unstable and may change without notice. */ export declare const condaReader: PackageReader; //# sourceMappingURL=conda.d.ts.map