import { z } from 'zod'; export declare const sendRawEmailRequestSchema: z.ZodObject<{ to: z.ZodUnion<[z.ZodString, z.ZodArray]>; subject: z.ZodString; html: z.ZodString; cc: z.ZodOptional]>>; bcc: z.ZodOptional]>>; from: z.ZodOptional; replyTo: z.ZodOptional; }, "strip", z.ZodTypeAny, { subject: string; to: string | string[]; html: string; cc?: string | string[] | undefined; bcc?: string | string[] | undefined; from?: string | undefined; replyTo?: string | undefined; }, { subject: string; to: string | string[]; html: string; cc?: string | string[] | undefined; bcc?: string | string[] | undefined; from?: string | undefined; replyTo?: string | undefined; }>; export type SendRawEmailRequest = z.infer; /** * Response for POST /api/email/send-raw * Empty on success - extend with optional fields later if needed */ export declare const sendEmailResponseSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export type SendEmailResponse = z.infer; //# sourceMappingURL=email-api.schema.d.ts.map