import { z } from "zod"; export declare const CreateWorkflowOptionsSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export type CreateWorkflowOptions = z.infer; export declare const CreateWorkflowResponseSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodNullable; trigger_url: z.ZodString; enabled: z.ZodBoolean; created_at: z.ZodString; }, z.core.$strip>; export type CreateWorkflowResponse = z.infer; //# sourceMappingURL=schemas.d.ts.map