export declare enum HttpMethod { GET = "get", DELETE = "delete", POST = "post", PUT = "put", PATCH = "patch" } export default HttpMethod;