declare const HttpMethod: {
    readonly GET: "GET";
    readonly HEAD: "HEAD";
    readonly POST: "POST";
    readonly PUT: "PUT";
    readonly PATCH: "PATCH";
    readonly DELETE: "DELETE";
    readonly CONNECT: "CONNECT";
    readonly OPTIONS: "OPTIONS";
    readonly TRACE: "TRACE";
};
type HttpMethods = keyof typeof HttpMethod;

export { HttpMethod, type HttpMethods };
