export declare const httpMethods: readonly ["GET", "PUT", "POST", "PATCH", "DELETE", "HEAD", "OPTIONS"]; export declare type HttpMethod = typeof httpMethods[number] | Lowercase; export declare function isHttpMethod(value: unknown): value is HttpMethod;