import { z } from "zod"; export declare const SendMailSchema: z.ZodObject<{ to: z.ZodString; subject: z.ZodString; body: z.ZodString; }, z.core.$strip>;