/**
 * Update a package's tag in the npm registry to a specific version
 * @param packageName The name of the package to update
 * @param version The version to use for the update
 * @param tag Th tag to update
 */
export default function (packageName: string, version: string, tag: string): Promise<string>;
