import { z } from 'zod'; /** * Zod schema for the CreateRunResponse 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 createRunResponse: z.ZodLazy>; /** * * @typedef {CreateRunResponse} createRunResponse * @property {string} - Identifier of the workflow run that was created. */ export type CreateRunResponse = z.infer; /** * Zod schema for mapping API responses to the CreateRunResponse 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 createRunResponseResponse: z.ZodLazy, { id: string; }, { id: string; }>>; /** * Zod schema for mapping the CreateRunResponse 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 createRunResponseRequest: z.ZodLazy, { id: string; }, { id: string; }>>; //# sourceMappingURL=create-run-response.d.ts.map