export declare enum HttpMethod { GET = "GET", QUERY = "QUERY", POST = "POST", PUT = "PUT", PATCH = "PATCH", OPTIONS = "OPTIONS", HEAD = "HEAD", DELETE = "DELETE" } export declare const httpMethods: HttpMethod[];