/**
 * Enum representing HTTP request methods.
 *
 * @ordinal {string} POST - The HTTP POST method.
 * @ordinal {string} GET - The HTTP GET method.
 * @ordinal {string} HEAD - The HTTP HEAD method.
 * @ordinal {string} PUT - The HTTP PUT method.
 * @ordinal {string} PATCH - The HTTP PATCH method.
 * @ordinal {string} DELETE - The HTTP DELETE method.
 */
export declare enum RequestMethod {
    POST = "POST",
    GET = "GET",
    HEAD = "HEAD",
    PUT = "PUT",
    PATCH = "PATCH",
    DELETE = "DELETE"
}
