import { z } from "zod"; export declare const WorkflowVersionListItemSchema: z.ZodObject<{ id: z.ZodString; workflow_id: z.ZodString; zapier_durable_version: z.ZodString; dependencies: z.ZodNullable>; created_by_user_id: z.ZodString; created_at: z.ZodString; }, z.core.$strip>; export type WorkflowVersionListItem = z.infer; export declare const ListWorkflowVersionsOptionsSchema: z.ZodObject<{ workflow: z.ZodString; pageSize: z.ZodOptional; cursor: z.ZodOptional; maxItems: z.ZodOptional; }, z.core.$strip>; export type ListWorkflowVersionsOptions = z.infer; export declare const ListWorkflowVersionsApiResponseSchema: z.ZodObject<{ results: z.ZodArray>; created_by_user_id: z.ZodString; created_at: z.ZodString; }, z.core.$strip>>; meta: z.ZodObject<{ limit: z.ZodNumber; cursor: z.ZodOptional>; next_cursor: z.ZodOptional>; }, z.core.$strip>; links: z.ZodOptional>; }, z.core.$strip>>; }, z.core.$strip>; export type ListWorkflowVersionsApiResponse = z.infer; //# sourceMappingURL=schemas.d.ts.map