/** * Given a REST endpoint, method, and params, sends the request with axios and * returns the response. */ import { AxiosResponse } from 'axios'; /** * Helper function to send http requests using Axis. * * @private */ export declare function sendAxiosRequest(baseUrl: string, methodName: string, params: Req): Promise>;