/** * Conan (C++) package detector and reader for package-compatibility discovery. * * Parses `conanfile.txt` `[requires]` sections and `conanfile.py` `requires` * attributes. Reads axm metadata from Conan cache `conandata.yml` or * `extension_properties`. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Conan package detector. * * Scans `conanfile.txt` `[requires]` section and `conanfile.py` `requires` * attribute in the project directory. * * @experimental This API is unstable and may change without notice. */ export declare const conanDetector: PackageDetector; /** * Conan package reader. * * Reads axm metadata from `conandata.yml` in the Conan cache or * `extension_properties` for each detected Conan package. * * @experimental This API is unstable and may change without notice. */ export declare const conanReader: PackageReader; //# sourceMappingURL=conan.d.ts.map