export type Method = "GET" | "POST" | "DELETE" | "HEAD" | "PATCH" | "PUT" | "OPTIONS" | "TRACE" | "CONNECT"; export declare namespace Method { function is(value: any | Method): value is Method; function parse(value: string | undefined): Method | undefined; }