import type { Response } from 'node-fetch'; import * as TE from 'fp-ts/TaskEither'; import { Dictionary } from '@stoplight/types'; import { IHttpResponse } from '../types'; export declare const parseResponseBody: (response: Pick) => TE.TaskEither; export declare const parseResponseHeaders: (headers: Dictionary) => Dictionary; export declare const parseResponse: (response: Pick) => TE.TaskEither;