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