import { APIResponse } from "../modules/MailerSend.module"; export declare class RequestService { private readonly apiKey; private readonly baseUrl; constructor(apiKey: string, baseUrl: string); protected post(path: string, data: T): Promise; protected get(path: string, queryParams?: any): Promise; protected deleteReq(path: string, data?: T): Promise; protected put(path: string, data: any): Promise; private request; }