import { z } from 'zod'; export declare const serializedWorkflowSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; nodes: z.ZodArray; parameters: z.ZodRecord; credentials: z.ZodOptional>>; disabled: z.ZodOptional; notes: z.ZodOptional; notesInFlow: z.ZodOptional; continueOnFail: z.ZodOptional; retryOnFail: z.ZodOptional; maxTries: z.ZodOptional; waitBetweenTries: z.ZodOptional; alwaysOutputData: z.ZodOptional; executeOnce: z.ZodOptional; onError: z.ZodOptional; webhookId: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; id: string; type: string; typeVersion: number; position: [number, number]; parameters: Record; credentials?: Record | undefined; disabled?: boolean | undefined; webhookId?: string | undefined; notes?: string | undefined; notesInFlow?: boolean | undefined; retryOnFail?: boolean | undefined; maxTries?: number | undefined; waitBetweenTries?: number | undefined; alwaysOutputData?: boolean | undefined; executeOnce?: boolean | undefined; onError?: string | undefined; continueOnFail?: boolean | undefined; }, { name: string; id: string; type: string; typeVersion: number; position: [number, number]; parameters: Record; credentials?: Record | undefined; disabled?: boolean | undefined; webhookId?: string | undefined; notes?: string | undefined; notesInFlow?: boolean | undefined; retryOnFail?: boolean | undefined; maxTries?: number | undefined; waitBetweenTries?: number | undefined; alwaysOutputData?: boolean | undefined; executeOnce?: boolean | undefined; onError?: string | undefined; continueOnFail?: boolean | undefined; }>, "many">; connections: z.ZodRecord, "many">>, "many">>>; settings: z.ZodOptional>; versionId: z.ZodString; parentFolderId: z.ZodNullable; active: z.ZodBoolean; isArchived: z.ZodBoolean; }, "strip", z.ZodTypeAny, { name: string; id: string; active: boolean; isArchived: boolean; nodes: { name: string; id: string; type: string; typeVersion: number; position: [number, number]; parameters: Record; credentials?: Record | undefined; disabled?: boolean | undefined; webhookId?: string | undefined; notes?: string | undefined; notesInFlow?: boolean | undefined; retryOnFail?: boolean | undefined; maxTries?: number | undefined; waitBetweenTries?: number | undefined; alwaysOutputData?: boolean | undefined; executeOnce?: boolean | undefined; onError?: string | undefined; continueOnFail?: boolean | undefined; }[]; connections: Record>; versionId: string; parentFolderId: string | null; settings?: Record | undefined; }, { name: string; id: string; active: boolean; isArchived: boolean; nodes: { name: string; id: string; type: string; typeVersion: number; position: [number, number]; parameters: Record; credentials?: Record | undefined; disabled?: boolean | undefined; webhookId?: string | undefined; notes?: string | undefined; notesInFlow?: boolean | undefined; retryOnFail?: boolean | undefined; maxTries?: number | undefined; waitBetweenTries?: number | undefined; alwaysOutputData?: boolean | undefined; executeOnce?: boolean | undefined; onError?: string | undefined; continueOnFail?: boolean | undefined; }[]; connections: Record>; versionId: string; parentFolderId: string | null; settings?: Record | undefined; }>; export type SerializedWorkflow = z.infer;