import type { EventEmitter } from 'events'; import type { Stream } from '@rdfjs/types'; import type { SinkMap } from '@rdfjs/sink-map'; import li from 'parse-link-header'; import type { ResponseWrapper } from 'alcaeus-core'; export default class implements ResponseWrapper { readonly requestedUri: string; readonly xhr: Response; private readonly parsers; private readonly jsonLdContext?; constructor(requestedUri: string, xhr: Response, parsers: SinkMap, jsonLdContext?: unknown | undefined); quadStream(): Stream | null; get status(): number; get apiDocumentationLink(): string | null; get links(): li.Links; get mediaType(): string; get redirectUrl(): string | null; get effectiveUri(): string; get resourceUri(): string; private get createdResourceUri(); private get canonicalUri(); resolveUri(uri: string): string; } //# sourceMappingURL=ResponseWrapper.d.ts.map