import { FetchRequestInterface, Locateable } from '../../types'; /** * Fetch Request is essentially an "proxy" class meant to wrap a standard Request * Object and provide some sane convetions like passing in an abort controller, * auto-serialization of FormData, auto-filling X-CSRF-Token and a number of other * niceties. The FetchRequest constructor follows the same conventions as fetch. * It can either take in a Request object, or be giving a url and then an object * with all the fetch options. */ export declare function FetchRequest(input: Request | Locateable, options?: RequestInit): FetchRequestInterface; //# sourceMappingURL=fetchRequest.d.ts.map