import type { Stream } from 'node:stream'; import { type HttpStatusCode } from '../../http/models/HttpStatusCode.js'; import { type HttpResponse, isHttpResponse as isHttpResponseSymbol } from '../models/HttpResponse.js'; export declare class SuccessHttpResponse implements HttpResponse { readonly statusCode: HttpStatusCode; readonly body?: (object | string | number | boolean | Stream) | undefined; readonly headers?: Record | undefined; [isHttpResponseSymbol]: true; constructor(statusCode: HttpStatusCode, body?: (object | string | number | boolean | Stream) | undefined, headers?: Record | undefined); } //# sourceMappingURL=SuccessHttpResponse.d.ts.map