import z from "zod";

//#region src/schemas/email.d.ts
declare const emailDeliveryStatusSchema: z.ZodUnion<readonly [z.ZodLiteral<"sent">, z.ZodLiteral<"delivered">, z.ZodLiteral<"delayed">, z.ZodLiteral<"complained">, z.ZodLiteral<"bounced">, z.ZodLiteral<"clicked">, z.ZodLiteral<"failed">, z.ZodLiteral<"opened">, z.ZodLiteral<"scheduled">]>;
declare const emailTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"external">, z.ZodLiteral<"internal">]>;
//#endregion
export { emailDeliveryStatusSchema, emailTypeSchema };
//# sourceMappingURL=email.d.mts.map