import { z } from 'zod'; /** * Zod schema for the SmtpConfig model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const smtpConfig: z.ZodLazy; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>>; host: z.ZodString; password: z.ZodString; port: z.ZodNumber; replyTo: z.ZodOptional; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>>>; security: z.ZodOptional; username: z.ZodString; }, "strip", z.ZodTypeAny, { from: { email: string; name?: string | undefined; }; host: string; password: string; port: number; username: string; replyTo?: { email: string; name?: string | undefined; } | undefined; security?: string | undefined; }, { from: { email: string; name?: string | undefined; }; host: string; password: string; port: number; username: string; replyTo?: { email: string; name?: string | undefined; } | undefined; security?: string | undefined; }>>; /** * * @typedef {SmtpConfig} smtpConfig * @property {SmtpConfigFrom} - Default sender email address * @property {string} - SMTP server hostname * @property {string} - SMTP authentication password * @property {number} - SMTP server port * @property {SmtpConfigReplyTo} - Reply-to email address * @property {Security} - SMTP security/encryption method * @property {string} - SMTP authentication username */ export type SmtpConfig = z.infer; /** * Zod schema for mapping API responses to the SmtpConfig application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const smtpConfigResponse: z.ZodLazy; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>, { email: string; name: string | undefined; }, { email: string; name?: string | undefined; }>>; host: z.ZodString; password: z.ZodString; port: z.ZodNumber; reply_to: z.ZodOptional; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>, { email: string; name: string | undefined; }, { email: string; name?: string | undefined; }>>>; security: z.ZodOptional; username: z.ZodString; }, "strip", z.ZodTypeAny, { from: { email: string; name: string | undefined; }; host: string; password: string; port: number; username: string; reply_to?: { email: string; name: string | undefined; } | undefined; security?: string | undefined; }, { from: { email: string; name?: string | undefined; }; host: string; password: string; port: number; username: string; reply_to?: { email: string; name?: string | undefined; } | undefined; security?: string | undefined; }>, { from: { email: string; name: string | undefined; }; host: string; password: string; port: number; replyTo: { email: string; name: string | undefined; } | undefined; security: string | undefined; username: string; }, { from: { email: string; name?: string | undefined; }; host: string; password: string; port: number; username: string; reply_to?: { email: string; name?: string | undefined; } | undefined; security?: string | undefined; }>>; /** * Zod schema for mapping the SmtpConfig application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const smtpConfigRequest: z.ZodLazy; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>, { email: string; name: string | undefined; }, { email: string; name?: string | undefined; }>>; host: z.ZodString; password: z.ZodString; port: z.ZodNumber; replyTo: z.ZodOptional; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>, { email: string; name: string | undefined; }, { email: string; name?: string | undefined; }>>>; security: z.ZodOptional; username: z.ZodString; }, "strip", z.ZodTypeAny, { from: { email: string; name: string | undefined; }; host: string; password: string; port: number; username: string; replyTo?: { email: string; name: string | undefined; } | undefined; security?: string | undefined; }, { from: { email: string; name?: string | undefined; }; host: string; password: string; port: number; username: string; replyTo?: { email: string; name?: string | undefined; } | undefined; security?: string | undefined; }>, { from: { email: string; name: string | undefined; }; host: string; password: string; port: number; reply_to: { email: string; name: string | undefined; } | undefined; security: string | undefined; username: string; }, { from: { email: string; name?: string | undefined; }; host: string; password: string; port: number; username: string; replyTo?: { email: string; name?: string | undefined; } | undefined; security?: string | undefined; }>>; //# sourceMappingURL=smtp-config.d.ts.map