import { z } from 'zod'; /** * Zod schema for the SendgridConfigPayload 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 sendgridConfigPayload: z.ZodLazy>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>>; replyTo: z.ZodOptional>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>>; }, "strip", z.ZodTypeAny, { apiKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; replyTo?: { email: string; name?: string | null | undefined; } | undefined; }, { apiKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; replyTo?: { email: string; name?: string | null | undefined; } | undefined; }>>; /** * * @typedef {SendgridConfigPayload} sendgridConfigPayload * @property {string} - The API key for Sendgrid * @property {SendgridConfigPayloadFrom} * @property {SendgridConfigPayloadReplyTo} */ export type SendgridConfigPayload = z.infer; /** * Zod schema for mapping API responses to the SendgridConfigPayload 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 sendgridConfigPayloadResponse: 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; }>>>; reply_to: z.ZodOptional>; }, "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; }>>>; }, "strip", z.ZodTypeAny, { api_key: string; from?: { email: string; name: string | null | undefined; } | undefined; reply_to?: { email: string; name: string | null | undefined; } | undefined; }, { api_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; reply_to?: { email: string; name?: string | null | undefined; } | undefined; }>, { apiKey: string; from: { email: string; name: string | null | undefined; } | undefined; replyTo: { email: string; name: string | null | undefined; } | undefined; }, { api_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; reply_to?: { email: string; name?: string | null | undefined; } | undefined; }>>; /** * Zod schema for mapping the SendgridConfigPayload 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 sendgridConfigPayloadRequest: 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; }>>>; replyTo: z.ZodOptional>; }, "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; }>>>; }, "strip", z.ZodTypeAny, { apiKey: string; from?: { email: string; name: string | null | undefined; } | undefined; replyTo?: { email: string; name: string | null | undefined; } | undefined; }, { apiKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; replyTo?: { email: string; name?: string | null | undefined; } | undefined; }>, { api_key: string; from: { email: string; name: string | null | undefined; } | undefined; reply_to: { email: string; name: string | null | undefined; } | undefined; }, { apiKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; replyTo?: { email: string; name?: string | null | undefined; } | undefined; }>>; //# sourceMappingURL=sendgrid-config-payload.d.ts.map