export declare const HttpMethod: { readonly Post: "POST"; readonly Put: "PUT"; readonly Patch: "PATCH"; }; export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];