import type { StabilityFilter } from "../version/types.js"; import type { MavenRepository } from "../maven/repository.js"; export interface GetLatestVersionInput { groupId: string; artifactId: string; stabilityFilter?: StabilityFilter; } export interface GetLatestVersionResult { groupId: string; artifactId: string; latestVersion: string; stability: string; allVersionsCount: number; } export declare function getLatestVersionHandler(repos: MavenRepository[], input: GetLatestVersionInput): Promise;