import { z } from 'zod'; /** * Zod schema for the EventSourceConfigPayload 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 eventSourceConfigPayload: z.ZodLazy>; /** * * @typedef {EventSourceConfigPayload} eventSourceConfigPayload * @property {string} */ export type EventSourceConfigPayload = z.infer; /** * Zod schema for mapping API responses to the EventSourceConfigPayload 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 eventSourceConfigPayloadResponse: z.ZodLazy, { source: string; }, { source: string; }>>; /** * Zod schema for mapping the EventSourceConfigPayload 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 eventSourceConfigPayloadRequest: z.ZodLazy, { source: string; }, { source: string; }>>; //# sourceMappingURL=event-source-config-payload.d.ts.map