import { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import { Server } from './server'; export declare class HttpDelegate { private readonly server; constructor(server: Server); send(http: AxiosInstance, config: AxiosRequestConfig): Promise; }