export declare const GET = "get"; export declare const POST = "post"; export declare const PUT = "put"; export declare const PATCH = "patch"; export declare const DELETE = "delete"; export declare const OPTIONS = "options"; export declare const HEAD = "head"; export declare const HTTPVerbs: { GET: string; POST: string; PUT: string; PATCH: string; DELETE: string; OPTIONS: string; HEAD: string; }; export type HTTPVerb = keyof typeof HTTPVerbs; export default HTTPVerbs;