import { RequestInit, Response } from "node-fetch"; export interface FetchOptions extends Omit { proxy?: string; headers?: Record; signal?: AbortSignal; } export default function (url: string, options: FetchOptions): Promise;