import { z } from 'zod'; export declare const editAIModelSchema: z.ZodObject<{ name: z.ZodString; externalUrl: z.ZodString; apikey: z.ZodString; modelCustom: z.ZodString; modelTypeCustom: z.ZodString; description: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; externalUrl: string; apikey: string; modelCustom: string; modelTypeCustom: string; description?: string | undefined; }, { name: string; externalUrl: string; apikey: string; modelCustom: string; modelTypeCustom: string; description?: string | undefined; }>; export type EditAIModelFormSchema = z.infer;