import type { HttpGetService } from './http-get-service.js'; /** * `fetch`-based {@link HttpGetService}. * * Returns the parsed JSON document as `body`. Most consumers (the JSON-LD * document loader, the did:web driver, registry fetches) treat `body` as an * already-parsed object, so this adapter normalizes accordingly: it parses on a * JSON Content-Type and also attempts to parse a string body when a host serves * JSON-LD as `text/plain` (e.g. raw.githubusercontent.com status lists), * falling back to the raw text only if parsing fails. Status and headers are * returned for the caller to handle non-2xx responses. */ export declare function BuiltinHttpGetService(): HttpGetService; export type BuiltinHttpGetServiceType = ReturnType; //# sourceMappingURL=builtin-http-get-service.d.ts.map