import { RequestOptions, Request, Response } from './http';
export declare const fetch: (url: string | URL | Request, { method, headers, body, ...options }?: RequestOptions) => Promise<Response>;
