/** * CocoaPods 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"; /** * CocoaPods package detector. * * Scans `Podfile` and `*.podspec` files in the project directory * for pod dependencies. * * @experimental This API is unstable and may change without notice. */ export declare const cocoapodsDetector: PackageDetector; /** * CocoaPods package reader. * * Reads `Pods//axm.json` for each detected pod * and extracts recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const cocoapodsReader: PackageReader; //# sourceMappingURL=cocoapods.d.ts.map