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