import { z } from "zod"; export declare const WorkflowItemSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodNullable; trigger_url: z.ZodString; enabled: z.ZodBoolean; current_version_id: z.ZodNullable; created_at: z.ZodString; updated_at: z.ZodString; }, z.core.$strip>; export type WorkflowItem = z.infer; export declare const ListWorkflowsOptionsSchema: z.ZodObject<{ pageSize: z.ZodOptional; maxItems: z.ZodOptional; cursor: z.ZodOptional; }, z.core.$strip>; export type ListWorkflowsOptions = z.infer; /** * Wire shape returned by `/durableworkflowzaps/api/v0/workflows`. The * backend does not paginate today — `next_cursor` is reserved for when * server-side pagination lands and is currently never returned. The SDK * exposes `listWorkflows` as paginated so the future change is * transparent to callers. */ export declare const ListWorkflowsApiResponseSchema: z.ZodObject<{ workflows: z.ZodArray; trigger_url: z.ZodString; enabled: z.ZodBoolean; current_version_id: z.ZodNullable; created_at: z.ZodString; updated_at: z.ZodString; }, z.core.$strip>>; next_cursor: z.ZodOptional>; }, z.core.$strip>; export type ListWorkflowsApiResponse = z.infer; //# sourceMappingURL=schemas.d.ts.map