import type { Http } from '../../../util/http';
import type { ReleaseResult } from '../types';
export declare class MetadataCache {
    private readonly http;
    constructor(http: Http);
    getRelease(registryUrl: string, packageName: string, versions: string[]): Promise<ReleaseResult>;
}
