import { z } from 'zod'; /** * Zod schema for the SesConfigPayload 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 sesConfigPayload: z.ZodLazy>; }, "strip", z.ZodTypeAny, { email: string; name?: string | null | undefined; }, { email: string; name?: string | null | undefined; }>>>; keyId: z.ZodString; region: z.ZodString; secretKey: z.ZodString; }, "strip", z.ZodTypeAny, { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }, { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>>; /** * * @typedef {SesConfigPayload} sesConfigPayload * @property {SesConfigPayloadFrom} * @property {string} - AWS Access Key ID * @property {string} - AWS Region * @property {string} - AWS Secret Key */ export type SesConfigPayload = z.infer; /** * Zod schema for mapping API responses to the SesConfigPayload 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 sesConfigPayloadResponse: 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; }>>>; key_id: z.ZodString; region: z.ZodString; secret_key: z.ZodString; }, "strip", z.ZodTypeAny, { key_id: string; region: string; secret_key: string; from?: { email: string; name: string | null | undefined; } | undefined; }, { key_id: string; region: string; secret_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>, { from: { email: string; name: string | null | undefined; } | undefined; keyId: string; region: string; secretKey: string; }, { key_id: string; region: string; secret_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>>; /** * Zod schema for mapping the SesConfigPayload 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 sesConfigPayloadRequest: 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; }>>>; keyId: z.ZodString; region: z.ZodString; secretKey: z.ZodString; }, "strip", z.ZodTypeAny, { keyId: string; region: string; secretKey: string; from?: { email: string; name: string | null | undefined; } | undefined; }, { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>, { from: { email: string; name: string | null | undefined; } | undefined; key_id: string; region: string; secret_key: string; }, { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }>>; //# sourceMappingURL=ses-config-payload.d.ts.map