import {Response} from "node-fetch"; export function fetch(url: String, options: FetchOptions): Promise; export interface FetchOptions { method: string, headers: object } export interface Response { status: number; json(): Promise; }