import { z } from 'zod'; /** * Zod schema for the MailgunConfigPayload 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 mailgunConfigPayload: z.ZodLazy>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>>; region: z.ZodString; }, "strip", z.ZodTypeAny, { apiKey: string; domain: string; region: string; from?: { email: string; name?: string | null | undefined; } | undefined; }, { apiKey: string; domain: string; region: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>>; /** * * @typedef {MailgunConfigPayload} mailgunConfigPayload * @property {string} * @property {string} * @property {MailgunConfigPayloadFrom} * @property {Region} */ export type MailgunConfigPayload = z.infer; /** * Zod schema for mapping API responses to the MailgunConfigPayload 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 mailgunConfigPayloadResponse: z.ZodLazy>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>, { email: string; name: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>>; region: z.ZodString; }, "strip", z.ZodTypeAny, { domain: string; region: string; api_key: string; from?: { email: string; name: string | null | undefined; } | undefined; }, { domain: string; region: string; api_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>, { apiKey: string; domain: string; from: { email: string; name: string | null | undefined; } | undefined; region: string; }, { domain: string; region: string; api_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>>; /** * Zod schema for mapping the MailgunConfigPayload 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 mailgunConfigPayloadRequest: z.ZodLazy>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>, { email: string; name: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>>; region: z.ZodString; }, "strip", z.ZodTypeAny, { apiKey: string; domain: string; region: string; from?: { email: string; name: string | null | undefined; } | undefined; }, { apiKey: string; domain: string; region: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>, { api_key: string; domain: string; from: { email: string; name: string | null | undefined; } | undefined; region: string; }, { apiKey: string; domain: string; region: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>>; //# sourceMappingURL=mailgun-config-payload.d.ts.map