import type { Document, RemoteDocument } from "jsonld/jsonld-spec.js"; import type { RequestInitExtended } from "../core/types.js"; interface EmptyResponseDocument { response: Response; } interface ResponseDocument extends RemoteDocument { response: Response; body: Document; } /** * Sends a JSON-LD request to the API. * @param {string} url The URL to request. * @param {RequestInitExtended} [options] Optional fetch options. * @returns {Promise} The response document or an empty response document. */ export default function fetchJsonLd(url: string, options?: RequestInitExtended): Promise; export {}; //# sourceMappingURL=fetchJsonLd.d.ts.map