export interface NodePackage { name: string; version: string; } /** * Attempt to retrieve the metadata of the package name. * If no metadata found, will use "latest" as version for the package. * * @return {Promise} * @param packageName */ export declare function getLatestNodeVersion(packageName: string): Promise;