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