import { ISerializer } from '@breadstone/ziegel-platform-serialization'; import { IHttpContent } from './Interfaces/IHttpContent'; /** * @public */ export declare class HttpContent implements IHttpContent { private readonly _serializer; private readonly _value; constructor(value: string | Promise, serializer?: ISerializer); get value(): Promise; as(): Promise; } //# sourceMappingURL=HttpContent.d.ts.map