import type { MavenRepository } from "../maven/repository.js"; export interface CheckVersionExistsInput { groupId: string; artifactId: string; version: string; } export interface CheckVersionExistsResult { groupId: string; artifactId: string; version: string; exists: boolean; stability?: string; repository?: string; } export declare function checkVersionExistsHandler(repos: MavenRepository[], input: CheckVersionExistsInput): Promise;