import { z } from 'zod'; /** * Zod schema for the WorkflowRunStatus model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const workflowRunStatus: z.ZodLazy; error: z.ZodOptional; nextStep: z.ZodOptional; startedAt: z.ZodOptional; state: z.ZodOptional; }, "strip", z.ZodTypeAny, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }>>; /** * * @typedef {WorkflowRunStatus} workflowRunStatus * @property {string} * @property {string} * @property {number} * @property {string} * @property {number} */ export type WorkflowRunStatus = z.infer; /** * Zod schema for mapping API responses to the WorkflowRunStatus application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const workflowRunStatusResponse: z.ZodLazy; error: z.ZodOptional; next_step: z.ZodOptional; started_at: z.ZodOptional; state: z.ZodOptional; }, "strip", z.ZodTypeAny, { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; }, { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; }>, { completedAt: string | undefined; error: string | undefined; nextStep: number | undefined; startedAt: string | undefined; state: number | undefined; }, { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; }>>; /** * Zod schema for mapping the WorkflowRunStatus application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const workflowRunStatusRequest: z.ZodLazy; error: z.ZodOptional; nextStep: z.ZodOptional; startedAt: z.ZodOptional; state: z.ZodOptional; }, "strip", z.ZodTypeAny, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }>, { completed_at: string | undefined; error: string | undefined; next_step: number | undefined; started_at: string | undefined; state: number | undefined; }, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }>>; //# sourceMappingURL=workflow-run-status.d.ts.map