import { z } from 'zod'; /** * Zod schema for the SendgridConfigPayloadFrom 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 sendgridConfigPayloadFrom: z.ZodLazy>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>; /** * * @typedef {SendgridConfigPayloadFrom} sendgridConfigPayloadFrom * @property {string} - The email address to send from * @property {string} - The name to send from */ export type SendgridConfigPayloadFrom = z.infer; /** * Zod schema for mapping API responses to the SendgridConfigPayloadFrom 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 sendgridConfigPayloadFromResponse: 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; }>>; /** * Zod schema for mapping the SendgridConfigPayloadFrom 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 sendgridConfigPayloadFromRequest: 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; }>>; //# sourceMappingURL=sendgrid-config-payload-from.d.ts.map