import { SquidexClientConfiguration } from '../configuration';
import { HttpClient, HttpSendParams } from './http-client';
/**
 * Basically just wrapper around node-fetch, with some Squidex specific things & error handling
 */
export declare class NodeFetchClient implements HttpClient {
    private readonly config;
    constructor(config: SquidexClientConfiguration);
    send<TReq = any, TRes = TReq>(params: HttpSendParams): Promise<TRes>;
}
