import { z } from 'zod'; /** * Zod schema for the ItemsSteps 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 itemsSteps: 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 {ItemsSteps} itemsSteps * @property {string} - Command to execute (e.g., broadcast, pause, wait, abort) * @property {string} * @property {any} */ export type ItemsSteps = z.infer; /** * Zod schema for mapping API responses to the ItemsSteps 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 itemsStepsResponse: 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 ItemsSteps 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 itemsStepsRequest: 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=items-steps.d.ts.map