import type { GitHubRelease } from "./github-client.js"; /** * Find the release whose tag matches the given Maven version. * * Match strategies (in priority order): * 1. Exact: tag === version * 2. v-prefix: tag === "v" + version * 3. Suffix after separator: tag ends with version and the preceding char is `-` or `/` */ export declare function matchReleaseToVersion(releases: GitHubRelease[], version: string): GitHubRelease | undefined;