export declare const enum HttpMethod { GET = "GET", POST = "POST", PATCH = "PATCH", DELETE = "DELETE", HEAD = "HEAD", PUT = "PUT", OPTIONS = "OPTIONS" } declare type HttpHeader = Record; declare type RequestBody = null | FormData | string | Record; export declare function makeAjaxRequest(url: string, method?: HttpMethod, body?: RequestBody, isFormData?: boolean, headers?: HttpHeader): Promise; export {};