import { RequestInit, Response } from 'node-fetch'; type Fetch = (url: string, init?: RequestInit) => Promise; export declare const fetch: Fetch; export {};