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