export declare type Method = "get" | "post" | "put" | "patch" | "delete" | "options" | "head"; export declare type WithPayloadHTTPMethods = "post" | "put" | "patch"; export declare type NoPayloadHTTPMethods = "get" | "delete" | "head" | "options";