import { z } from 'zod'; /** * Zod schema for the SesConfig 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 sesConfig: 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; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }; id: string; name: string; }, { config: { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }; id: string; name: string; }>>; /** * * @typedef {SesConfig} sesConfig * @property {SesConfigPayload} * @property {string} * @property {string} */ export type SesConfig = z.infer; /** * Zod schema for mapping API responses to the SesConfig 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 sesConfigResponse: 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; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { from: { email: string; name: string | null | undefined; } | undefined; keyId: string; region: string; secretKey: string; }; id: string; name: string; }, { config: { key_id: string; region: string; secret_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; }; id: string; name: string; }>, { config: { from: { email: string; name: string | null | undefined; } | undefined; keyId: string; region: string; secretKey: string; }; id: string; name: string; }, { config: { key_id: string; region: string; secret_key: string; from?: { email: string; name?: string | null | undefined; } | undefined; }; id: string; name: string; }>>; /** * Zod schema for mapping the SesConfig 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 sesConfigRequest: 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; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { from: { email: string; name: string | null | undefined; } | undefined; key_id: string; region: string; secret_key: string; }; id: string; name: string; }, { config: { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }; id: string; name: string; }>, { config: { from: { email: string; name: string | null | undefined; } | undefined; key_id: string; region: string; secret_key: string; }; id: string; name: string; }, { config: { keyId: string; region: string; secretKey: string; from?: { email: string; name?: string | null | undefined; } | undefined; }; id: string; name: string; }>>; //# sourceMappingURL=ses-config.d.ts.map