import { z } from "zod"; export declare const fromTextSchema: z.ZodObject<{ baseModel: z.ZodOptional; model: z.ZodString; params: z.ZodObject<{ prompt: z.ZodString; negativePrompt: z.ZodOptional; scheduler: z.ZodOptional; steps: z.ZodOptional; cfgScale: z.ZodOptional; width: z.ZodNumber; height: z.ZodNumber; seed: z.ZodOptional; clipSkip: z.ZodOptional; }, "strict", z.ZodTypeAny, { prompt: string; width: number; height: number; negativePrompt?: string | undefined; scheduler?: string | undefined; steps?: number | undefined; cfgScale?: number | undefined; seed?: number | undefined; clipSkip?: number | undefined; }, { prompt: string; width: number; height: number; negativePrompt?: string | undefined; scheduler?: string | undefined; steps?: number | undefined; cfgScale?: number | undefined; seed?: number | undefined; clipSkip?: number | undefined; }>; additionalNetworks: z.ZodOptional; triggerWord: z.ZodOptional; }, "strict", z.ZodTypeAny, { strength?: number | undefined; triggerWord?: string | undefined; }, { strength?: number | undefined; triggerWord?: string | undefined; }>>>; controlNets: z.ZodOptional>; weight: z.ZodOptional; startStep: z.ZodOptional; endStep: z.ZodOptional; blobKey: z.ZodOptional>; imageUrl: z.ZodOptional>; }, "strict", z.ZodTypeAny, { preprocessor?: "Canny" | "DepthZoe" | "SoftedgePidinet" | "Rembg" | undefined; weight?: number | undefined; startStep?: number | undefined; endStep?: number | undefined; blobKey?: string | null | undefined; imageUrl?: string | null | undefined; }, { preprocessor?: "Canny" | "DepthZoe" | "SoftedgePidinet" | "Rembg" | undefined; weight?: number | undefined; startStep?: number | undefined; endStep?: number | undefined; blobKey?: string | null | undefined; imageUrl?: string | null | undefined; }>, "many">>; callbackUrl: z.ZodOptional; quantity: z.ZodDefault>; batchSize: z.ZodDefault>; priority: z.ZodOptional>; properties: z.ZodOptional>; }, "strict", z.ZodTypeAny, { model: string; params: { prompt: string; width: number; height: number; negativePrompt?: string | undefined; scheduler?: string | undefined; steps?: number | undefined; cfgScale?: number | undefined; seed?: number | undefined; clipSkip?: number | undefined; }; quantity: number; batchSize: number; baseModel?: string | undefined; additionalNetworks?: Record | undefined; controlNets?: { preprocessor?: "Canny" | "DepthZoe" | "SoftedgePidinet" | "Rembg" | undefined; weight?: number | undefined; startStep?: number | undefined; endStep?: number | undefined; blobKey?: string | null | undefined; imageUrl?: string | null | undefined; }[] | undefined; callbackUrl?: string | undefined; priority?: string | number | undefined; properties?: Record | undefined; }, { model: string; params: { prompt: string; width: number; height: number; negativePrompt?: string | undefined; scheduler?: string | undefined; steps?: number | undefined; cfgScale?: number | undefined; seed?: number | undefined; clipSkip?: number | undefined; }; baseModel?: string | undefined; additionalNetworks?: Record | undefined; controlNets?: { preprocessor?: "Canny" | "DepthZoe" | "SoftedgePidinet" | "Rembg" | undefined; weight?: number | undefined; startStep?: number | undefined; endStep?: number | undefined; blobKey?: string | null | undefined; imageUrl?: string | null | undefined; }[] | undefined; callbackUrl?: string | undefined; quantity?: number | undefined; batchSize?: number | undefined; priority?: string | number | undefined; properties?: Record | undefined; }>;