import z from 'zod'; import { ClientType } from '@/client'; export declare const mailCreateFormSchema: z.ZodObject<{ clientId: z.ZodObject<{ uuid: z.ZodUUID; type: z.ZodEnum; }, z.core.$strip>; dealUuid: z.ZodUUID; mailTemplateUuid: z.core.$ZodBranded; attachments: z.ZodArray; mimeType: z.ZodString; order: z.ZodNumber; url: z.ZodNullable; }, z.core.$strip>>; bcc: z.ZodNullable>; cc: z.ZodNullable>; from: z.ZodNullable; replyTo: z.ZodNullable; subject: z.ZodString; text: z.ZodString; to: z.ZodArray; }, z.core.$strip>; export type MailCreateForm = z.infer;