import { z } from 'zod'; /** * Zod schema for the WorkflowDefinitionSteps 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 workflowDefinitionSteps: z.ZodLazy>; input: z.ZodNullable>; }, "strip", z.ZodTypeAny, { command: string; if?: string | null | undefined; input?: any; }, { command: string; if?: string | null | undefined; input?: any; }>>; /** * * @typedef {WorkflowDefinitionSteps} workflowDefinitionSteps * @property {string} - Command to execute (e.g., broadcast, pause, wait, abort) * @property {string} - JMESPath condition that must evaluate truthy for the step to run. * @property {any} - Optional payload passed to the command when it executes. */ export type WorkflowDefinitionSteps = z.infer; /** * Zod schema for mapping API responses to the WorkflowDefinitionSteps 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 workflowDefinitionStepsResponse: z.ZodLazy>; input: z.ZodNullable>; }, "strip", z.ZodTypeAny, { command: string; if?: string | null | undefined; input?: any; }, { command: string; if?: string | null | undefined; input?: any; }>, { command: string; if: string | null | undefined; input: any; }, { command: string; if?: string | null | undefined; input?: any; }>>; /** * Zod schema for mapping the WorkflowDefinitionSteps 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 workflowDefinitionStepsRequest: z.ZodLazy>; input: z.ZodNullable>; }, "strip", z.ZodTypeAny, { command: string; if?: string | null | undefined; input?: any; }, { command: string; if?: string | null | undefined; input?: any; }>, { command: string; if: string | null | undefined; input: any; }, { command: string; if?: string | null | undefined; input?: any; }>>; //# sourceMappingURL=workflow-definition-steps.d.ts.map