import type { XmlElement } from 'xmldoc';
import type { Http } from '../../../util/http';
import type { ReleaseResult } from '../types';
export declare class NugetV2Api {
    getPkgProp(pkgInfo: XmlElement, propName: string): string | undefined;
    getReleases(http: Http, feedUrl: string, pkgName: string): Promise<ReleaseResult | null>;
}
