///
import { IncomingMessage } from "http";
/**
* Maks an HTTPS GET request to the specified URI and returns the parsed JSON
* body data.
*/
export declare function get(uri: string): Promise;
/**
* Make an HTTPS GET request to the specified URI and returns the parsed JSON
* body data as well as the full response.
*/
export declare function getResponse(uri: string): Promise<{
data: T;
response: IncomingMessage;
}>;
export declare function post(uri: string, postData?: string): Promise;