/// <reference types="node" />
import https from 'https';
import { IResponse } from './interfaces';
export declare const get: <T>(url: string, options?: https.RequestOptions | undefined) => Promise<IResponse<Error> | IResponse<T>>;
export default get;
