export declare type Method = "get" | "GET" | "delete" | "DELETE" | "head" | "HEAD" | "options" | "OPTIONS" | "post" | "POST" | "put" | "PUT" | "patch" | "PATCH" | "purge" | "PURGE" | "link" | "LINK" | "unlink" | "UNLINK"; import { RequestReturn } from "./ResponseType"; export declare type Requester = (url: URL, method: Method, headers: Headers, body: BodyInit | null, options: { autoRedirect: boolean; }) => Promise;