import { z } from 'zod'; /** * Zod schema for the EventSourceConfig 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 eventSourceConfig: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { source: string; }; id: string; name: string; }, { config: { source: string; }; id: string; name: string; }>>; /** * * @typedef {EventSourceConfig} eventSourceConfig * @property {EventSourceConfigPayload} * @property {string} * @property {string} */ export type EventSourceConfig = z.infer; /** * Zod schema for mapping API responses to the EventSourceConfig 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 eventSourceConfigResponse: z.ZodLazy, { source: string; }, { source: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { source: string; }; id: string; name: string; }, { config: { source: string; }; id: string; name: string; }>, { config: { source: string; }; id: string; name: string; }, { config: { source: string; }; id: string; name: string; }>>; /** * Zod schema for mapping the EventSourceConfig 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 eventSourceConfigRequest: z.ZodLazy, { source: string; }, { source: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { source: string; }; id: string; name: string; }, { config: { source: string; }; id: string; name: string; }>, { config: { source: string; }; id: string; name: string; }, { config: { source: string; }; id: string; name: string; }>>; //# sourceMappingURL=event-source-config.d.ts.map