import { z } from 'zod'; export type Method = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'options' | 'head' | 'trace'; export declare const method: z.ZodEnum<{ options: "options"; get: "get"; put: "put"; post: "post"; delete: "delete"; head: "head"; patch: "patch"; trace: "trace"; }>; //# sourceMappingURL=method.generated.d.ts.map