import type { OutgoingHttpHeaders } from 'node:http';
export declare abstract class HttpContent {
    private readonly _headers;
    get headers(): OutgoingHttpHeaders;
    abstract readAsync(): Promise<unknown>;
}
//# sourceMappingURL=httpContent.d.ts.map