///
import ClientResponse from "./ClientResponse";
import { RequestCredentials, Response } from "node-fetch";
import { URLSearchParams } from "url";
export declare type ResponseHandler = (response: Response) => Promise>;
export declare type ErrorResponseHandler = (response: Response) => Promise>;
export interface IRESTClient