/** The ability to parse a request body into {@linkcode FormData} when not * supported natively by the runtime. * * @module */ import * as dntShim from "./_dnt.shims.js"; import "./util.js"; /** Take a content type and the body of a request and parse it as * {@linkcode FormData}. * * This is used in run-times where there isn't native support for this * feature. */ export declare function parse(contentType: string, body: ReadableStream): Promise;