/** * Swift 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"; /** * Swift package detector. * * Scans `Package.swift` in the project directory and extracts `.package(url: ...)` * dependencies using regex pattern matching. * * @experimental This API is unstable and may change without notice. */ export declare const swiftDetector: PackageDetector; /** * Swift package reader. * * Reads `.build/checkouts//axm.json` for each detected SwiftPM * package and extracts recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const swiftReader: PackageReader; //# sourceMappingURL=swift.d.ts.map