declare const _Blob: { new (blobParts?: BlobPart[] | undefined, options?: BlobPropertyBag | undefined): globalThis.Blob; prototype: globalThis.Blob; }; declare const _File: { new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): globalThis.File; prototype: globalThis.File; }; declare const _fetch: ((input: RequestInfo, init?: RequestInit | undefined) => Promise) & typeof globalThis.fetch; declare const _Headers: { new (init?: HeadersInit | undefined): globalThis.Headers; prototype: globalThis.Headers; }; declare const _FormData: { new (form?: HTMLFormElement | undefined): globalThis.FormData; prototype: globalThis.FormData; }; declare const _URLSearchParams: { new (init?: string | globalThis.URLSearchParams | Record | string[][] | undefined): globalThis.URLSearchParams; prototype: globalThis.URLSearchParams; toString(): string; }; export { _Blob as Blob, _File as File, _fetch as fetch, _Headers as Headers, _FormData as FormData, _URLSearchParams as URLSearchParams, };