import { z } from "zod"; export declare const RunStatusSchema: z.ZodEnum<{ initialized: "initialized"; started: "started"; finished: "finished"; failed: "failed"; cancelled: "cancelled"; }>; export type RunStatus = z.infer; export declare const RunErrorSchema: z.ZodObject<{ code: z.ZodString; message: z.ZodString; }, z.core.$loose>; export type RunError = z.infer; export declare const RunItemSchema: z.ZodObject<{ id: z.ZodString; status: z.ZodEnum<{ initialized: "initialized"; started: "started"; finished: "finished"; failed: "failed"; cancelled: "cancelled"; }>; input: z.ZodUnknown; output: z.ZodNullable; error: z.ZodNullable>; execution_id: z.ZodNullable; is_private: z.ZodBoolean; created_at: z.ZodString; updated_at: z.ZodString; }, z.core.$strip>; export type RunItem = z.infer; export declare const ListDurableRunsOptionsSchema: z.ZodObject<{ pageSize: z.ZodOptional; cursor: z.ZodOptional; maxItems: z.ZodOptional; }, z.core.$strip>; export type ListDurableRunsOptions = z.infer; export declare const ListDurableRunsApiResponseSchema: z.ZodObject<{ results: z.ZodArray; input: z.ZodUnknown; output: z.ZodNullable; error: z.ZodNullable>; execution_id: z.ZodNullable; is_private: z.ZodBoolean; created_at: z.ZodString; updated_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 ListDurableRunsApiResponse = z.infer; //# sourceMappingURL=schemas.d.ts.map