/// <reference types="node" />
import { HttpExecutor, DownloadOptions } from "builder-util-runtime";
import { ClientRequest } from "http";
export declare class NodeHttpExecutor extends HttpExecutor<ClientRequest> {
    download(url: string, destination: string, options: DownloadOptions): Promise<string>;
    doRequest(options: any, callback: (response: any) => void): any;
}
export declare const httpExecutor: NodeHttpExecutor;
