import { z } from 'zod'; /** * Zod schema for the Items 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 items: z.ZodLazy; key: z.ZodString; steps: z.ZodArray>; input: z.ZodNullable>; }, "strip", z.ZodTypeAny, { command: string; if?: string | null | undefined; input?: any; }, { command: string; if?: string | null | undefined; input?: any; }>>, "many">; }, "strip", z.ZodTypeAny, { key: string; steps: { command: string; if?: string | null | undefined; input?: any; }[]; disabled?: boolean | undefined; }, { key: string; steps: { command: string; if?: string | null | undefined; input?: any; }[]; disabled?: boolean | undefined; }>>; /** * * @typedef {Items} items * @property {boolean} * @property {string} * @property {ItemsSteps[]} */ export type Items = z.infer; /** * Zod schema for mapping API responses to the Items 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 itemsResponse: z.ZodLazy; key: z.ZodString; steps: z.ZodArray>; 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; }>>, "many">; }, "strip", z.ZodTypeAny, { key: string; steps: { command: string; if: string | null | undefined; input: any; }[]; disabled?: boolean | undefined; }, { key: string; steps: { command: string; if?: string | null | undefined; input?: any; }[]; disabled?: boolean | undefined; }>, { disabled: boolean | undefined; key: string; steps: { command: string; if: string | null | undefined; input: any; }[]; }, { key: string; steps: { command: string; if?: string | null | undefined; input?: any; }[]; disabled?: boolean | undefined; }>>; /** * Zod schema for mapping the Items 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 itemsRequest: z.ZodLazy; key: z.ZodString; steps: z.ZodArray>; 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; }>>, "many">; }, "strip", z.ZodTypeAny, { key: string; steps: { command: string; if: string | null | undefined; input: any; }[]; disabled?: boolean | undefined; }, { key: string; steps: { command: string; if?: string | null | undefined; input?: any; }[]; disabled?: boolean | undefined; }>, { disabled: boolean | undefined; key: string; steps: { command: string; if: string | null | undefined; input: any; }[]; }, { key: string; steps: { command: string; if?: string | null | undefined; input?: any; }[]; disabled?: boolean | undefined; }>>; //# sourceMappingURL=items.d.ts.map