interface GetResponse {
    contentType: string;
    data: any;
}
export declare function get(url: string, headers?: {
    [key: string]: string | undefined;
}): Promise<GetResponse>;
/**
 * Downloads and unzip a remote zip file, returning the root path
 * to the unzipped contents.
 */
export declare function unzipRemote(url: string, toDir: string, headers?: {
    [header: string]: any;
}): Promise<string>;
export {};
//# sourceMappingURL=http.d.ts.map