declare function measureResponseSize(response: Response): Promise<[number, Response]>;
declare function getResponseBody(response: Response): Promise<[Buffer, Response]>;
declare function getResponseJson(response: Response): Promise<[any, Response]>;
declare function teeResponse(response: Response): Promise<[Response, Response]>;

export { getResponseBody, getResponseJson, measureResponseSize, teeResponse };
