/// /// /// import type http from 'node:http'; import type stream from 'node:stream'; export declare function readAsBuffer(res: stream.Readable): Promise; export declare function readAsString(res: http.IncomingMessage): Promise; export declare function drainResponse(res: stream.Readable): Promise;