import { z } from 'zod'; /** * Zod schema for the SmtpConfigFrom 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 smtpConfigFrom: z.ZodLazy; }, "strip", z.ZodTypeAny, { email: string; name?: string | undefined; }, { email: string; name?: string | undefined; }>>; /** * Default sender email address * @typedef {SmtpConfigFrom} smtpConfigFrom - Default sender email address - Default sender email address * @property {string} - Sender email address * @property {string} - Sender name */ export type SmtpConfigFrom = z.infer; /** * Zod schema for mapping API responses to the SmtpConfigFrom 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 smtpConfigFromResponse: 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; }>>; /** * Zod schema for mapping the SmtpConfigFrom 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 smtpConfigFromRequest: 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; }>>; //# sourceMappingURL=smtp-config-from.d.ts.map