import type { TypeChecker, ValueOf } from "../types.ts"; export declare const HttpMethod: { readonly CONNECT: "CONNECT"; readonly DELETE: "DELETE"; readonly GET: "GET"; readonly HEAD: "HEAD"; readonly OPTIONS: "OPTIONS"; readonly PATCH: "PATCH"; readonly POST: "POST"; readonly PUT: "PUT"; readonly TRACE: "TRACE"; }; export type HttpMethod = ValueOf; export declare const isHttpMethod: TypeChecker;