import z from 'zod'; import { ClientType, DealSource, SdkContentLocale } from '@/client'; export declare const dealCreateFormSchema: z.ZodObject<{ clientId: z.ZodObject<{ uuid: z.ZodUUID; name: z.ZodString; type: z.ZodEnum; }, z.core.$strip>; name: z.ZodString; dealLanguage: z.ZodEnum; dealSource: z.ZodEnum; }, z.core.$strip>; export type DealCreateForm = z.infer;