import BuildsRequest from "./buildsrequest"; import { Method } from "axios"; declare class SMTP2GOService implements BuildsRequest { method: Method; endpoint: string; requestBody?: Map; constructor(endpoint: string, requestBody?: Map, method?: Method); getMethod(): Method; getEndpoint(): string; buildRequestBody(): Promise>; } export default SMTP2GOService;