import { AxiosResponse } from "axios"; import { InteractionReplyData } from "."; export declare class Http { url: string; private token; constructor(token: string); iwr(url: string, type?: string, body?: any, queryString?: any): Promise>; iwrFiles(body: InteractionReplyData, url: string, alreadyReplied?: boolean): Promise>; private createFormDataFileBody; }