import { z } from 'zod'; export declare const WaitpointVersion: z.ZodEnum<{ V0: "V0"; V1: "V1"; }>; export type WaitpointVersion = z.infer; export declare const CreateWaitpointRequest: z.ZodObject<{ flowRunId: z.ZodString; projectId: z.ZodString; stepName: z.ZodString; type: z.ZodEnum<{ WEBHOOK: "WEBHOOK"; DELAY: "DELAY"; }>; version: z.ZodEnum<{ V0: "V0"; V1: "V1"; }>; resumeDateTime: z.ZodOptional; responseToSend: z.ZodOptional; body: z.ZodOptional; headers: z.ZodOptional>; }, z.core.$strip>>; workerHandlerId: z.ZodOptional; httpRequestId: z.ZodOptional; }, z.core.$strip>; export type CreateWaitpointRequest = z.infer; export declare const CreateWaitpointResponse: z.ZodObject<{ id: z.ZodString; resumeUrl: z.ZodString; }, z.core.$strip>; export type CreateWaitpointResponse = z.infer; //# sourceMappingURL=index.d.ts.map