import { Method } from "axios";
export type HttpMethod = Method;
export declare const DATA_CONTENT_TYPES: string[];
export declare enum HttpContentType {
    urlencoded = "application/x-www-form-urlencoded",
    multipart = "multipart/form-data",
    json = "application/json",
    xml = "text/xml"
}
