import http from 'http'; import { Response } from "./response-polyfill.js"; /** * Emulation of Browser fetch for Node.js * @param url * @param options */ export declare function fetchNode(url: string, options: RequestInit): Promise; /** Returns a promise that resolves to a readable stream */ export declare function createHTTPRequestReadStream(url: string, options: any): Promise; //# sourceMappingURL=fetch-polyfill.d.ts.map