/** Returns the package url e.g. https://artifactory.lab.dynatrace.org/artifactory/api/npm/npm-dynatrace-release-v/dt-app/-/dt-app-0.126.0.tgz */
export declare function getNpmViewOutput(packageName: string, root: string): Promise<string>;
/** Fetching a json file and returns the content of response.json() */
export declare function downloadJsonContent<T = {
    [key: string]: unknown;
}>(url: string): Promise<T>;
