import { z } from 'zod'; export declare const PostRequestConfigSchema: z.ZodObject<{ path: z.ZodReadonly; body: z.ZodReadonly; contentType: z.ZodOptional; }, z.core.$strip>; export declare const GetRequestConfigSchema: z.ZodObject<{ path: z.ZodReadonly; contentType: z.ZodOptional; }, z.core.$strip>; export declare const UrlEncodedRequestConfigSchema: z.ZodObject<{ path: z.ZodNonOptional>; contentType: z.ZodNonOptional>; }, z.core.$strip>; export declare const DeleteRequestConfigSchema: z.ZodObject<{ path: z.ZodReadonly; }, z.core.$strip>; export declare const BufferRequestConfigSchema: z.ZodObject<{ body: z.ZodCustom, Buffer>; path: z.ZodNonOptional>; contentType: z.ZodNonOptional>; }, z.core.$strip>; export type PostRequestConfig = z.infer; export type GetRequestConfig = z.infer; export type DeleteRequestConfig = z.infer; export type UrlEncodedRequestConfig = z.infer; export type BufferRequestConfig = z.infer; //# sourceMappingURL=httpworkflow.d.ts.map