/** * Hex package detector and reader for package-compatibility discovery. * * Supports both Elixir (mix.exs) and Gleam (gleam.toml) projects. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Hex package detector. * * Scans `mix.exs` and `gleam.toml` in the project directory and extracts * dependencies from Elixir dependency tuples and Gleam TOML sections. * * @experimental This API is unstable and may change without notice. */ export declare const hexDetector: PackageDetector; /** * Hex package reader. * * Reads `deps//axm.json` as the primary source, falling back to * parsing `hex_metadata.config` for each detected Hex package. * * @experimental This API is unstable and may change without notice. */ export declare const hexReader: PackageReader; //# sourceMappingURL=hex.d.ts.map