import { z } from 'zod'; export declare const createJobFormSchema: z.ZodObject<{ agent: z.ZodString; message: z.ZodString; files: z.ZodArray; tool: z.ZodOptional>; }, "strip", z.ZodTypeAny, { name: string; description: string; key: string; args?: string[] | undefined; }, { name: string; description: string; key: string; args?: string[] | undefined; }>>; }, "strip", z.ZodTypeAny, { message: string; agent: string; files: any[]; tool?: { name: string; description: string; key: string; args?: string[] | undefined; } | undefined; }, { message: string; agent: string; files: any[]; tool?: { name: string; description: string; key: string; args?: string[] | undefined; } | undefined; }>; export type CreateJobFormSchema = z.infer;