import { SuperAgentRequest } from "superagent";
/**
 * Offers the necessary functionality to send requests.
 */
export interface IServiceLayerRequestsSender {
    /**
     * Sends the specified request.
     *
     * @param request The request that is to be sent.
     */
    send(request: SuperAgentRequest): Promise<any[]>;
}
