import type { Stream } from 'node:stream'; import { type HttpStatusCode } from '../../http/models/HttpStatusCode.js'; export declare const isHttpResponse: unique symbol; export interface HttpResponse { [isHttpResponse]: true; body?: object | string | number | boolean | Stream | undefined; headers?: Record | undefined; statusCode: HttpStatusCode; } //# sourceMappingURL=HttpResponse.d.ts.map