import { z } from 'zod'; /** * Zod schema for the GetRunResponseStatus 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 getRunResponseStatus: 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 {GetRunResponseStatus} getRunResponseStatus * @property {string} * @property {string} * @property {number} * @property {string} * @property {number} */ export type GetRunResponseStatus = z.infer; /** * Zod schema for mapping API responses to the GetRunResponseStatus 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 getRunResponseStatusResponse: 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 GetRunResponseStatus 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 getRunResponseStatusRequest: 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=get-run-response-status.d.ts.map