import { ClientRequestArgs } from 'http'; export declare const getProxy: () => { port: string; host: string; username: string; password: string; }; export declare const getRequestOptions: (url: string) => ClientRequestArgs; export declare const fetch: (url: string) => Promise; export declare const downloadFile: (url: string, writeLocation: string) => Promise; export declare const fetchJson: (url: string) => Promise;